按日期归档:2013 年 6 月 13 日

PHP判断输入是否为中文

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