Home > Backend Development > PHP Problem > How does PHP determine whether it is Chinese or English?

How does PHP determine whether it is Chinese or English?

Guanhui
Release: 2023-03-02 21:20:01
Original
3081 people have browsed it

How does PHP determine whether it is Chinese or English?

#How does PHP determine whether it is Chinese or English?

In PHP, you can use regular rules to judge Chinese or English. The regular rules for judging English are "/^[^\x80-\xff] $/", and the regular rules for judging Chinese are "/^[" .chr(0xa1)."-".chr(0xff)."] $/", just judge the matching result when using it.

Usage examples

<?php




function ischinese($s){
 
    $allen = preg_match("/^[^/x80-/xff]+$/", $s);   //判断是否是英文
    $allcn = preg_match("/^[".chr(0xa1)."-".chr(0xff)."]+$/",$s);  //判断是否是中文
    if($allen){  
          return &#39;allen&#39;;  
    }else{  
      if($allcn){  
           return &#39;allcn&#39;;  
      }else{  
           return &#39;encn&#39;;  
      }  
    }  
           
}
Copy after login

Recommended tutorial: "PHP"

The above is the detailed content of How does PHP determine whether it is Chinese or English?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template