


PHP Functions: Mastering the Application of ord() and chr() Functions_PHP Tutorial
The third issue of the Chinese character encoding research series, the PHP function chapter masters the application of ord() and chr() functions. In the previous issue [PHP Basics Chapter Detailed Explanation of ASCII Code Comparison Table and Character Conversion], we learned about the methods of ASCII code and character conversion, but When using it, I found that two special functions are needed for character conversion, which are used for conversion between characters and decimal. The ord() function converts characters into decimal numbers, and the chr() function converts decimal numbers into characters. In binary, Acts as a bridge between octal, decimal and hexadecimal.
1. Application of ord() function
ord() function is used to return the ASCII value of a character. The most basic usage is to obtain the ASCII value of a ord('a ') returns 97, but in actual development, it is most commonly used in the character interception function to obtain the decimal number of the high and low bit encoding of Chinese characters. For example, for common Chinese character interception functions, you can see the PHPWind or Discuz! forum source code. The principle of the substrs() function or cutstr() function is to obtain the ASCII code value of the character through the ord() function. If the return value is greater than 127, it is represented as half of the Chinese character, and then the second half is obtained and combined into a complete character, and combined at the same time Character encoding such as GBK or UTF-8, etc.
Take GBK encoding as an example and use the ord() function to judge Chinese characters and return the ASCII value of each Chinese character. The code is as follows
$string = "Don't be obsessed with brother";
$length = strlen($string);
var_dump($string);//Original Chinese
var_dump( $length);//Length
$result = array();
for($i=0;$i<$length;$i++){
if(ord($string[$i] )>127){
$result[] = $string[$i].' '.$string[++$i];
}
}
var_dump($result);
Code Description
1. Define a variable $string whose value is a string.
2. Get the length of the variable (number of bytes).
3. Print the variable and the variable The length is
4, obtain each byte value of the variable through a for loop, and display the two bytes of a Chinese character separated by a space.
The result is as shown below

Illustration: "Don't be obsessed with brother" is 5 Chinese characters, a total of 10 bytes (one Chinese character 2 characters section), each byte is printed separately and cannot be displayed normally as shown above
The initial value remains unchanged. Modify part of the code in the for loop to display the ASCII value of each byte
$result = array();
for($i=0;$i<$length;$i++){
if(ord( $string[$i])>127){
$result[] = ord($string[$i]).' '.ord($string[++$i]);
}
}
var_dump($result);
The above code uses the ord() function to print the ASCII value of each character, and the result is as follows

Through ord() After function conversion, the ASCII value of each character can be viewed normally.
2. Application of chr() function
The chr() function is opposite to the ord() function and is used to return the specified character, such as chr(97 ) returns a.
Combined with the above example, as long as the ASCII value of the Chinese character is obtained, the Chinese character can be assembled through the chr() function. The code is as follows
$string = "Don't be obsessed with brother";
$length = strlen($string);
var_dump($string);//original Chinese
var_dump($length);//Length
$result = array();
for($i=0;$i<$length;$i++){
if(ord($string [$i])>127){
$result[] = ord($string[$i]).' '.ord($string[++$i]);
}
}
var_dump($result);
foreach($result as $v){
$decs = explode(" ",$v);
echo chr($decs[0]). chr($decs[1]);
}
The result is as shown below

The above code does not directly output Chinese characters, but prints out normal Chinese characters. The principle is to first obtain the ASCII value of each byte and use chr() The function converts it into bytes, and then combines the two bytes to form a complete Chinese character.
Through the discussion of the ord() and chr() functions, we have initially understood the encoding principle of Chinese characters, understood that one Chinese character has two bytes in GBK encoding, and used the ord() and chr() functions to implement various For the byte conversion method, please pay attention to the Chinese character encoding conversion principle in the next issue of the Chinese character encoding research series.
Reference materials
Performance comparison of PHPWind and Discuz interception character functions substrs and cutstr

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.

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

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

Since the Huawei Mate60 series went on sale last year, I personally have been using the Mate60Pro as my main phone. In nearly a year, Huawei Mate60Pro has undergone multiple OTA upgrades, and the overall experience has been significantly improved, giving people a feeling of being constantly new. For example, recently, the Huawei Mate60 series has once again received a major upgrade in imaging capabilities. The first is the new AI elimination function, which can intelligently eliminate passers-by and debris and automatically fill in the blank areas; secondly, the color accuracy and telephoto clarity of the main camera have been significantly upgraded. Considering that it is the back-to-school season, Huawei Mate60 series has also launched an autumn promotion: you can enjoy a discount of up to 800 yuan when purchasing the phone, and the starting price is as low as 4,999 yuan. Commonly used and often new products with great value
