PHP判断输入是否为中文

if   (preg_match("/^[\x7f-\xff]+$/", $str)) { //兼容gb2312,utf-8
     return true;
} else {
     return false;
}

 

评论关闭