欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP计算字符数

程序员文章站 2022-04-14 18:05:51
...
//计算字符数
private function countStr($str){
$cclen=0;
$asclen=strlen($str);
$ind=0;
$hascc=ereg("[xa1-xfe]",$str); #判断是否有汉字
$hasasc=ereg("[x01-xa0]",$str); #判断是否有ascii字符
if($hascc && !$hasasc) #只有汉字的情况
return strlen($str)/2;
if(!$hascc && $hasasc) #只有ascii字符的情况
return strlen($str);
for($ind=0;$ind<$asclen;$ind++){
if(ord(substr($str,$ind,1))>0xa0){
$cclen++;
$ind++;
}else{
$cclen++;
}
}
return $cclen;
}