PHP 字符串截取
2021-05-18 19:29
阅读:601
标签:变量 显示 字符 func 字符串截取 sub his ext utf8 $a = $this->subtext($b,10);//字符串截取 显示长度 //字符串截取 参数 (变量 长度) PHP 字符串截取 标签:变量 显示 字符 func 字符串截取 sub his ext utf8 原文地址:http://www.cnblogs.com/www-xiaobo-com/p/7735618.html
function subtext($text, $length)
{
if(mb_strlen($text, ‘utf8‘) > $length)
return mb_substr($text, 0, $length, ‘utf8‘).‘...‘;
return $text;
}
评论
亲,登录后才可以留言!