风故故,也依依

Stand still in the wind.

导航

PHP判断字符串是中文还是英文

function is_chinese($s){
        $allen = preg_match("/^[^\x80-\xff]+$/", $s);   //判断是否是英文
        $allcn = preg_match("/^[".chr(0xa1)."-".chr(0xff)."]+$/",$s);  //判断是否是中文
        if($allen){  
              return 'allen';  
        }else{  
              if($allcn){  
                   return 'allcn';  
              }else{  
                   return 'encn';  
              }  
        } 
   }

posted on 2011-08-22 10:14  jadmin  阅读(1367)  评论(0编辑  收藏  举报