Chinese interception function mb_substr () in php _ PHP Tutorial

Source: Internet
Author: User
The description of the Chinese truncation function mb_substr () in php. Because the Chinese character is two bytes, it cannot use substr () in the same way as the English and numbers. Fortunately, there is a mb_substr () function in php to solve this problem, if you need it, check it out. Because the Chinese character is two bytes, it cannot use substr () in the same way as the English and numbers. Fortunately, there is a mb_substr () function in php to solve this problem, if you need it, check it out.

1. Chinese interception: mb_substr ()

Mb_substr ($ str, $ start, $ length, $ encoding)

$ Str: string to be truncated
$ Start: truncates the start point. The start point is 0.
$ Length, number of words to be intercepted
$ Encoding: webpage encoding, such as UTF-8, GB2312, and GBK

Instance:

The code is as follows:
$ Str = 'movie 618: http://www.bKjia. c0m ';
Echo mb_substr ($ str, 'utf-8'); // capture the first five characters. assume that the php file where the code is located is encoded as UTF-8.
?>

Results: Movie 618

2. get Chinese characters: mb_strlen ()

Mb_strlen ($ str, $ encoding)

$ Str: string to calculate the length
$ Encoding: webpage encoding, such as UTF-8, GB2312, and GBK

Instance:

The code is as follows:
$ Str = 'movie 618: http://www.hzhuti.com ';
Echo mb_strlen ($ str, 'utf-8'); // assume that the php file where the code is located is encoded as UTF-8.
?>

Result: 29

Random () will cause garbled characters. Fortunately, there is the mb_substr () function in php to solve this problem. if you need it, check it out ....

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.