时间:2021-07-01 10:21:17 帮助过:10人阅读
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() 就行了。