码迷,mamicode.com
首页 > Web开发 > 详细

PHP 字符串截取

时间:2017-10-26 11:48:53      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:变量   显示   字符   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;
}

PHP 字符串截取

标签:变量   显示   字符   func   字符串截取   sub   his   ext   utf8   

原文地址:http://www.cnblogs.com/www-xiaobo-com/p/7735618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!