Home > Backend Development > PHP Tutorial > PHP determines whether it is Chinese or English, _PHP tutorial

PHP determines whether it is Chinese or English, _PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 09:54:32
Original
1135 people have browsed it

PHP determines whether it is Chinese or English,

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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/996655.htmlTechArticlePHP determines whether it is Chinese or English, static function ischinese( $s ){ $allen = preg_match ("/^[ ^/x80-/xff] $/", $s ); // Determine whether it is English $allcn = preg_match ("/^[". chr (0xa1)."...
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