PHP正則判斷字符串是否全是中文

場景:例如判斷用戶輸入的中文名字php <?php /** *判斷字符串是否全是中文 */ function isAllChinese($str){ if(preg_match('/^[\x7f-\xff]+$/', $str)){ return true;//全是中文 }else{ return false;//不全是中文 } } var_dump(isAllChinese(
相關文章
相關標籤/搜索