PHP字符串截取长度自定义方法
程序员文章站
2022-05-02 14:00:25
...
我们下面就来介绍一下如何通过PHP自定义函数来截取我们想要截取的字符长度,超出部分用省略号代替或者隐藏。
字符串截取方法:
//截取字符串长度 function cut($Str, $Length,$more=true) { //$Str为截取字符串,$Length为需要截取的长度 global $s; $i = 0; $l = 0; $ll = strlen($Str); $s = $Str; $f = true; while ($i = $Length - 1) && $f) { $s = substr($Str, 0, $i); $f = false; } if (($l > $Length) && ($i使用方法:
$str = '看看截取到哪里?'; echo cut($str,1); echo '
'; echo cut($str,4); echo '
'; echo cut($str,5); echo '
'; echo cut($str,5,false); echo '
'; $str = '中英文混合看看hello?'; echo cut($str,18); echo '
'; echo cut($str,50);输出:
看... 看看... 看看... 看看 中英文混合看看hel... 中英文混合看看hello?解释:一般UTF-8格式为3个字节,而GBK兼容gb2312一般都是2个字节,以上以UTF-8编码为实例。
通过第三个参数$more可以开关省略号模式,默认为true为带省略号,false为没有省略号。