当前位置:Gxlcms > PHP教程 > php获取utf8字符串的字符长度

php获取utf8字符串的字符长度

时间:2021-07-01 10:21:17 帮助过:10人阅读

php获取utf8字符串的字符长度,摘自大名鼎鼎的WordPress,非常精确的哦,另外需要注意的是本函数仅适用于utf-8 编码下的字符串。

function utf8_strlen($string){
$string=trim($string);
if(empty($string)) return 0;
// 将字符串分解为单元
preg_match_all("/./us", $string, $match);
// 返回单元个数
return count($match[0]);

}

另外对于gbk/gb2312编码下的字符串,直接使用PHP自带的函数如 strlen()、mb_strlen() 就行了。

人气教程排行