PHP 正则匹配篇

来源:互联网 发布:苹果变音软件 编辑:程序博客网 时间:2024/06/14 18:54

使用PHP 正则匹配UTF8 字符串是否为 汉字

$str = "ad123阿斯编程"; if (preg_match("/^[\x{4e00}-\x{9fa5}]+$/u",$str)) { print("该字符串全部是中文"); } else { print("该字符串不全部是中文"); }