Home Backend Development PHP Tutorial Analysis of the specific method of processing Chinese strings with PHP string mbstring_PHP tutorial

Analysis of the specific method of processing Chinese strings with PHP string mbstring_PHP tutorial

Jul 15, 2016 pm 01:30 PM
mbstring php Chinese specific deal with string right method of parse language pass

By understanding The coexistence of multiple languages ​​means multi-bytes. PHP’s built-in string length function strlen cannot correctly handle Chinese strings. It only gets the characters occupied by the string. Number of sections. For GB2312 Chinese encoding, the value obtained by strlen is twice the number of Chinese characters, while for UTF-8 encoded Chinese, the difference is 1 to 3 times.

Using PHP string mbstring can better solve this problem. The usage of mb_strlen is similar to strlen, except that it has a second optional parameter to specify the character encoding. For example, to get the length of the UTF-8 string $str, you can use mb_strlen($str,’UTF-8′). If the second parameter is omitted, PHP's internal encoding will be used. The internal encoding can be obtained through the mb_internal_encoding() function. There are two ways to set it:

1. Set mbstring.internal_encoding = UTF-8 in php.ini
2. Call mb_internal_encoding("GBK")

In addition to the PHP string mbstring, there are many cutting functions, among which mb_substr splits characters by words, and mb_strcut splits characters by bytes, but neither of them will produce half a character. Moreover, cutting from functions has different effects on length. The cutting condition of mb_strcut is less than strlen, and mb_substr is equal to strlen. See the example below.

1

2

3

4

<ol class="dp-xml">

<li class="alt"><span><span class="tag"><</span><span> ?  </span></span></li><li><span>$</span><span class="attribute">str</span><span> = &lsquo;我是一串比较长的中文-www.jefflei.com&rsquo;;  </span></li><li class="alt"><span>echo &ldquo;mb_substr:&rdquo; . mb_substr($str, 0, 6, &lsquo;utf-8&prime;);  </span></li><li><span>echo &rdquo;  </span></li><li class="alt"><span>&ldquo;;  </span></li><li><span>echo &ldquo;mb_strcut:&rdquo; . mb_strcut($str, 0, 6, &lsquo;utf-8&prime;);  </span></li><li class="alt"><span class="tag">?></span><span> </span></span></li>

<li><span> </span></li>

</ol>

Copy after login

The output is as follows:
mb_substr: I am a string Compare
mb_strcut: I am

It should be noted that the PHP string mbstring is not a PHP core function. Before use, you need to ensure that mbstring support is added when compiling the module in PHP:
(1) Compile Use –enable-mbstring
(2) to modify /usr/local/lib/php.inc
default_charset = “zh-cn”
mbstring.language = zh-cn
mbstring.internal_encoding = zh-cn

The PHP string mbstring class library has a lot of content, and also includes email processing functions such as mb_ send_ mail, etc.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446311.htmlTechArticleThe coexistence of multiple languages ​​means multi-bytes, and PHP’s built-in string length function strlen cannot handle it correctly. Chinese string, it only gets the number of bytes occupied by the string. Yes...
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles