标签:变量 显示 字符 func 字符串截取 sub his ext utf8
$a = $this->subtext($b,10);//字符串截取 显示长度
//字符串截取 参数 (变量 长度)
function subtext($text, $length)
{
if(mb_strlen($text, ‘utf8‘) > $length)
return mb_substr($text, 0, $length, ‘utf8‘).‘...‘;
return $text;
}
标签:变量 显示 字符 func 字符串截取 sub his ext utf8
原文地址:http://www.cnblogs.com/www-xiaobo-com/p/7735618.html