UTF-8编码时,PHP如何正则匹配中文汉字?亲测可用

时间:2021-12-12 07:37:15

这个方法亲测可用,代码如下:

<?php   
header('content-type:text/html;charset=utf-8');
$input = "^_^,PHP is the best programming language in the world!";
if (preg_match_all("/([\x{4e00}-\x{9fa5}]+)/u", $input, $match))
{
var_dump($match);
print("该字符串含有中文");
}
else {
print("该字符串没有中文");
}


效果如图:

UTF-8编码时,PHP如何正则匹配中文汉字?亲测可用

<?php   
header('content-type:text/html;charset=utf-8');
$input = "utf-8编码时,如何正则匹配中文汉字?";
if (preg_match_all("/([\x{4e00}-\x{9fa5}]+)/u", $input, $match))
{
var_dump($match);
print("该字符串含有中文");
}
else {
print("该字符串没有中文");
}


效果截图:

UTF-8编码时,PHP如何正则匹配中文汉字?亲测可用