首页  >  文章  >  后端开发  >  php怎么按字数截取替换

php怎么按字数截取替换

藏色散人
藏色散人原创
2021-09-01 10:14:241847浏览

php按字数截取替换的方法:1、使用“function substr_format(){...}”方法进行截取替换;2、使用“function cut_string($str, $len){...}”方法进行截取替换。

php怎么按字数截取替换

本文操作环境:Windows7系统、PHP7.1版本、Dell G3电脑

php怎么按字数截取替换?

PHP截取指定长度的字符串,超出部分用 ..替换

function substr_format($text, $length, $replace='..', $encoding='UTF-8') 
{
if ($text && mb_strlen($text, $encoding)>$length)
{
return mb_substr($text, 0, $length, $encoding).$replace;
}
return $text;
}

还有

function cut_string($str, $len)
{
// 检查长度
if (mb_strwidth($str, &#39;UTF-8&#39;)<=$len)
{
return $str;
}
// 截取
$i = 0;
$tlen = 0;
$tstr = &#39;&#39;;
while ($tlen < $len)
{
$chr = mb_substr($str, $i, 1, &#39;UTF-8&#39;);
$chrLen = ord($chr) > 127 ? 2 : 1;
if ($tlen + $chrLen > $len) break;
$tstr .= $chr;
$tlen += $chrLen;
$i ++;
}
if ($tstr != $str)
{
$tstr .= &#39;...&#39;;
}
return $tstr;
}

推荐:《PHP视频教程

               

以上是php怎么按字数截取替换的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn