php验证是否是中文

header("content-type:text/html;charset=utf-8");
$str = "编";
if (preg_match("/^[x{4e00}-x{9fa5}]+$/u",$str)) {
print("该字符串全部是中文");
} else {
print("该字符串不全部是中文");
}

原文地址:https://www.cnblogs.com/brady-wang/p/5590005.html