


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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

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

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

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

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
