这个方法亲测可用,代码如下:
匹配中文 字母数字
/^[\x80-\xffa-zA-Z0-9]{1,20}/
<?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("该字符串没有中文");
}
效果如图:
<?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("该字符串没有中文");
}
效果截图: