当前位置:Gxlcms > PHP教程 > php判断字符串是英文或中文的函数

php判断字符串是英文或中文的函数

时间:2021-07-01 10:21:17 帮助过:21人阅读

  1. static function ischinese($s){

  2. $allen = preg_match("/^[^/x80-/xff]+$/", $s); //判断是否是英文

  3. $allcn = preg_match("/^[".chr(0xa1)."-".chr(0xff)."]+$/",$s); //判断是否是中文
  4. if($allen){
  5. return 'allen';
  6. }else{
  7. if($allcn){
  8. return 'allcn';
  9. }else{
  10. return 'encn';
  11. }
  12. }
  13. }
  14. ?> //by bbs.it-home.org

人气教程排行