正则判断汉字
程序员文章站
2022-07-13 13:14:42
...
$str = '你好1212';
if(preg_match('/^[\x{4e00}-\x{9fa5}]+$/u', $str)>0){
echo '全是中文';
}elseif(preg_match('/[\x{4e00}-\x{9fa5}]/u', $str)>0){
echo '含有中文';
}
提示:字符编码为utf8格式时,以上写法有效