/**
* 检测utf8字数,包括中文
* @param $str
* @return int
*/
function get_utf8_words_count($str)
{
preg_match_all("/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/", $str, $ar);
return count($ar[0]);
}
原文地址:http://ouyangjun.blog.51cto.com/10284323/1731933