首页 > 代码库 > 截取中文字符长度(中文、字母都有效)

截取中文字符长度(中文、字母都有效)

下面给大家分享下:“中文字符长度,和截取中文字符(字母汉字通用)”


例子:先算出字符的长度,在截取显示,日过字符长度超过6就用...代替

echo ‘<meta http-equiv="content-type" content="text/html;charset=utf-8"/>‘;

$CustomizedInfo = ‘美日汇购物返利网http://www.hnzyxok.com/‘;
 if(mb_strlen($CustomizedInfo,‘utf-8‘) >6){
     echo mb_substr($CustomizedInfo,0,6,‘utf-8‘).‘...‘;
 }else{
echo $CustomizedInfo;
}
 
exit;

截取中文字符长度(中文、字母都有效)