


Analysis of the specific method of processing Chinese strings with PHP string mbstring_PHP tutorial
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 |
|
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.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



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

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

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

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

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

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

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

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