PHP intercepts the Chinese string not garbled method

Source: Internet
Author: User

Using PHP built-in method Mb_substr intercept Chinese not garbled, very simple to use, we refer to use it

The GBK code intercepts the sample codes as follows: $str = ' who I am '; GBK encoded string echo mb_substr ($str, 0, 1, ' GBK ');   Output my Mb_substr method has one more parameter than substr to specify the string encoding.  Utf-8 Code intercept example [code] $str = ' Who I am ABC '; UTF-8 encoded string echo mb_substr ($str, 0, 2, ' utf-8 ');   Output I A [/code mixed also completely no problem.   The use of friendship tips when you need to pay attention to the PHP file encoding, and Web page display when the code. Using this mb_substr method to know the encoding of strings in advance, if you do not know the encoding, you need to judge, Mbstring Library also provides mb_check_encoding to verify string encoding, but not perfect.

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.