Home Backend Development PHP Tutorial php multibyte string

php multibyte string

Nov 21, 2016 pm 05:58 PM
php php string

Introduction

Although every necessary character in many languages ​​can be mapped one-to-one to an 8-bit value, there are also several languages ​​that require so many characters for written communication that their encoding range cannot only include In a byte (a byte Byte consists of 8 bits. Each bit can only contain two different values: 1 or 0. Therefore, one byte can only represent 256 different values, that is, eight of 2 power). Multibyte character encoding schemes were developed to express more than 256 characters in conventional byte-based encoding systems.

When you operate (trim, split, splice, etc.) multi-byte encoded strings, because under this encoding scheme, two or more consecutive bytes may only express one character, so you need Use specialized functions. Otherwise, when you apply a function that cannot detect multi-byte strings to this string, it may not be able to detect the starting position of multi-byte characters and end up with a garbled string, basically losing its original meaning.

mbstring provides functions for multi-byte strings, which can help you handle multi-byte encoding in PHP. In addition, mbstring can convert between possible character encodings. For convenience, mbstring is designed to handle Unicode-based encodings, such as UTF-8, UCS-2, and many single-byte encodings.

mbstring is not a default extension. This means that it is not activated by default. You must activate this module explicitly in the configure option.

HTTP Input and Output

HTTP input/output character encoding conversion also works for binary data. If binary data is used for HTTP input/output, the user should control character encoding conversion.

Since PHP 4.3.3, if the enctype attribute of the HTML form is set to multipart/form-data, and mbstring.encoding_translation in php.ini is set to On, POST variables and the name of the uploaded file will also be converted to Internal character encoding. However, the transformation will not be applied to the keys of the query.

HTTP input There is no way to control the conversion of HTTP input characters in PHP scripts. To disable HTTP input character conversion, this must be set in php.ini.

Example #1 Disabling HTTP input conversion in php.ini

;; 禁用 HTTP 输入转换
mbstring.http_input = pass
;;禁用 HTTP 输入转换 (PHP 4.3.0 或更高版本)
mbstring.encoding_translation = Off
Copy after login

When PHP is running as Apache module. These settings can also be overridden through each virtual host (Virtual Host) directive in httpd.conf or .htaccess in each directory.
There are several ways to use HTTP output character encoding conversion. One is to use php.ini, the other is to use ob_start(), with mb_output_handler() as the callback function of ob_start.

Example #2 php.ini setting example

;; 为所有 PHP 页面启用输出字符编码的转换
;; 启用输出缓冲
output_buffering    = On
;; 设置 mb_output_handler 来进行输出的转换
output_handler      = mb_output_handler
Copy after login

Example #3 Script example

<?php
    // 仅为此页面启用输出字符编码的转换
    // 设置 HTTP 输出字符编码为 SJIS
    mb_http_output(&#39;SJIS&#39;);
    // 开始缓冲并指定 "mb_output_handler" 为回调函数
    ob_start(&#39;mb_output_handler&#39;);
?>
Copy after login

Multi-byte string function

mb_check_encoding — Check whether the string is valid in the specified encoding

mb_convert_case — Resize the string Write conversion

mb_convert_encoding — Convert character encodings

mb_convert_kana — Convert "kana" one from another ("zen-kaku", "han-kaku" and more)

mb_convert_variables — Convert character encodings of one or more variables

mb_decode_mimeheader — Decode the string in the MIME header field

mb_decode_numericentity — Decode the HTML numeric string into characters

mb_detect_encoding — Detect the encoding of the character

mb_detect_order — Set/get the detection order of character encoding

mb_encode_mimeheader — For MIME head Encoded string

mb_encode_numericentity — Encode character to HTML numeric string reference

mb_encoding_aliases — Get aliases of a known encoding type

mb_ereg_match — Regular expression match for multibyte string

mb_ereg_replace_callback — Perform a regular expression seach and replace with multibyte support using a callback

mb_ereg_replace — Replace regular expression with multibyte support

mb_ereg_search_getpos — Returns start point for next regular expression match

mb_ereg_search_getregs — Retrieve the result from the last multibyte regular expression match

mb_ereg_search_init — Setup string and regular expression for a multibyte regular expression match

mb_ereg_search_pos — Returns position and length of a matched part of the multibyte regular expression for a predefined multibyte string

mb_ereg_search_regs — Returns the matched part of a multibyte regular expression

mb_ereg_search_setpos — Set start point of next regular expression match

mb_ereg_search — Multibyte regular expression match for predefined multibyte string

mb_ereg — Regular expression match with multibyte support

mb_eregi_replace — Replace regular expression with multibyte support ignoring case

mb_eregi — Regular expression match ignoring case with multibyte support

mb_get_info — Get the internal settings of mbstring

mb_http_input — Detect HTTP input character encoding

mb_http_output — Set/get HTTP output character encoding

mb_internal_encoding — Set/get the internal character encoding

mb_language — Set/get the current language

mb_list_encodings — Return an array of all supported encodings

mb_output_handler — Callback function for converting character encoding in the output buffer

mb_parse_str — Parse GET/ POST/COOKIE data and set global variables

mb_preferred_mime_name — Get MIME string

mb_regex_encoding — Set/Get character encoding for multibyte regex

mb_regex_set_options — Set/Get the default options for mbregex functions

mb_send_mail — Send encoded mail

mb_split — Split a multi-byte string using regular expressions

mb_strcut — Get a part of a character

mb_strimwidth — Get a string truncated by a specified width

mb_stripos — Case-insensitively find a string where another character The position of the first occurrence in a string

mb_stristr — Find the first occurrence of a string in another string, case-insensitively

mb_strlen — Get the length of a string

mb_strpos — Find the first occurrence of a string in another string Occurrence position

mb_strrchr — Find the last occurrence of the specified character in another string

mb_strrichr — Find the last occurrence of the specified character in another string in a case-insensitive manner

mb_strripos — Case-insensitive Find the last occurrence of a string in a string

mb_strrpos — Find the last occurrence of a string in a string

mb_strstr — Find the first occurrence of a string in another string

mb_strtolower — Use String lower case

mb_strtoupper — Make the string uppercase

mb_strwidth — Return the width of the string

mb_substitute_character — Set/get the substitution character

mb_substr_count — Count the number of occurrences of the string

mb_substr — Get the part of the string


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

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months 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 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.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles