PHP判断输入是否为中文 superaj 发布于 2013 年 6 月 13 日 评论关闭 if (preg_match("/^[\x7f-\xff]+$/", $str)) { //兼容gb2312,utf-8 return true; } else { return false; }