PHP interception of Chinese characters garbled problem solving method mb_substr function Application _php Tutorial

Source: Internet
Author: User
First of all
1. Make sure you have php_mbstring.dll this file under your windows/system32, and do not copy it into Windows/system32 from your PHP installation directory extensions.

2. Find php.ini in Windows directory Open edit, search Mbstring.dll, find
Extension=php_mbstring.dll the front of the number, so that the MB_SUBSTR function can take effect.
Mb_strcut function can also intercept the length of the string, the following example specifically to see where the difference:

Copy CodeThe code is as follows:
$str = ' so that my string will not have garbled ^_^ ';

echo "MB_SUBSTR:". Mb_substr ($str, 0, 7, ' utf-8 ');
Result: so that my word
echo "
";

echo "Mb_strcut:". Mb_strcut ($str, 0, 6, ' utf-8 ');
Result: this
?>


As can be seen from the above example, Mb_substr is to divide characters by word, while mb_strcut splits characters by Byte, but does not produce a half-character phenomenon.

http://www.bkjia.com/PHPjc/318741.html www.bkjia.com true http://www.bkjia.com/PHPjc/318741.html techarticle first of all 1. Make sure you have php_mbstring.dll this file under your windows/system32, and do not copy it into Windows/system32 from your PHP installation directory extensions. 2. Find php.i in Windows directory ...

  • Related Article

    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.