本文整理汇总了PHP中Typecho_Common::strLen方法的典型用法代码示例。如果您正苦于以下问题:PHP Typecho_Common::strLen方法的具体用法?PHP Typecho_Common::strLen怎么用?PHP Typecho_Common::strLen使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Typecho_Common
的用法示例。
在下文中一共展示了Typecho_Common::strLen方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: detabLine
/**
* Convert tabs to spaces on each line using a 4-space tab stop
* @param string $string
*
* @return string
*/
protected static function detabLine($string)
{
if (strpos($string, "\t") === false) {
return $string;
}
// Split into different parts
$parts = explode("\t", $string);
// Add each part to the resulting line
// The first one is done here; others are prefixed
// with the necessary spaces inside the loop below
$line = $parts[0];
unset($parts[0]);
foreach ($parts as $part) {
// Calculate number of spaces; insert them followed by the non-tab contents
$amount = 4 - Typecho_Common::strLen($line, 'UTF-8') % 4;
$line .= str_repeat(' ', $amount) . $part;
}
return $line;
}
示例2: maxLength
/**
* Max Length
*
* @access public
* @param string
* @return boolean
*/
public function maxLength($str, $length)
{
return Typecho_Common::strLen($str) < $length;
}