使用PHP 正则匹配UTF8 字符串是否为 汉字
$str = "ad123阿斯编程";
if (preg_match("/^[\x{4e00}-\x{9fa5}]+$/u",$str)) {
print("该字符串全部是中文");
} else {
print("该字符串不全部是中文");
}
使用PHP 正则匹配UTF8 字符串是否为 汉字
$str = "ad123阿斯编程";
if (preg_match("/^[\x{4e00}-\x{9fa5}]+$/u",$str)) {
print("该字符串全部是中文");
} else {
print("该字符串不全部是中文");
}