Php checks whether the string is full of Chinese characters or contains Chinese characters.

Source: Internet
Author: User
Php checks whether the string is full of Chinese characters or contains Chinese characters.

  1. $ Str = "'2014 Is ";
  2. If (! Eregi ("[^ \ x80-\ xff]", "$ str ")){
  3. Echo "all Chinese ";
  4. } Else {
  5. Echo "not ";
  6. }

2. identify Chinese characters

  1. $ Str = "Chinese ";
  2. If (preg_match ("/[\ x7f-\ xff]/", $ str )){
  3. Echo "contains Chinese ";
  4. } Else {
  5. Echo "no Chinese ";
  6. }
  7. Or
  8. $ Pattern = '/[^ \ x00-\ x80]/';
  9. If (preg_match ($ pattern, $ str )){
  10. Echo "contains Chinese ";
  11. } Else {
  12. Echo "no Chinese ";
  13. }

Note: The above code is tested under UTF-8 and has not been tested under other codes.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.