php正则匹配汉字

php匹配汉字(utf-8)

$str = file_get_contents('http://www.qq.com');
echo mb_strlen($str);
$str = mb_convert_encoding($str,'UTF-8',mb_detect_encoding($str,'gbk,gb2312,utf-8'));
echo PHP_EOL;
preg_match_all("/[\x{4e00}-\x{9fa5}]/u",$str,$matchs);
var_dump($matchs);

 

版权声明:
作者:xiaoniba
链接:https://blog.xiaoniba.com/2019/07/31/php%e6%ad%a3%e5%88%99%e5%8c%b9%e9%85%8d%e6%b1%89%e5%ad%97/
来源:小泥吧的博客
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>