search
HomeBackend DevelopmentPHP TutorialPHP Functions: Mastering the Application of ord() and chr() Functions_PHP Tutorial

PHP Functions: Mastering the Application of ord() and chr() Functions_PHP Tutorial

Jul 21, 2016 pm 03:22 PM
orordphpandChinesefunctioncharacterapplicationmasterResearchseriescoding

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

Copy code Code 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;$iif(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
php-ord-dec
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
Copy code The code is as follows:

$result = array();
for($i=0;$iif(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
php-ord-dec-number
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
Copy code 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;$iif(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
php-chr-dec

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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/324709.htmlTechArticleThe third issue of Chinese character encoding research series, PHP function chapter mastering the application of ord() and chr() functions, previous issue [PHP Basics Detailed Explanation of ASCII Code Comparison Table and Character Conversion] In this article, we learned about ASCII code and character conversion...
Statement
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
How can you check if a PHP session has already started?How can you check if a PHP session has already started?Apr 30, 2025 am 12:20 AM

In PHP, you can use session_status() or session_id() to check whether the session has started. 1) Use the session_status() function. If PHP_SESSION_ACTIVE is returned, the session has been started. 2) Use the session_id() function, if a non-empty string is returned, the session has been started. Both methods can effectively check the session state, and choosing which method to use depends on the PHP version and personal preferences.

Describe a scenario where using sessions is essential in a web application.Describe a scenario where using sessions is essential in a web application.Apr 30, 2025 am 12:16 AM

Sessionsarevitalinwebapplications,especiallyfore-commerceplatforms.Theymaintainuserdataacrossrequests,crucialforshoppingcarts,authentication,andpersonalization.InFlask,sessionscanbeimplementedusingsimplecodetomanageuserloginsanddatapersistence.

How can you manage concurrent session access in PHP?How can you manage concurrent session access in PHP?Apr 30, 2025 am 12:11 AM

Managing concurrent session access in PHP can be done by the following methods: 1. Use the database to store session data, 2. Use Redis or Memcached, 3. Implement a session locking strategy. These methods help ensure data consistency and improve concurrency performance.

What are the limitations of using PHP sessions?What are the limitations of using PHP sessions?Apr 30, 2025 am 12:04 AM

PHPsessionshaveseverallimitations:1)Storageconstraintscanleadtoperformanceissues;2)Securityvulnerabilitieslikesessionfixationattacksexist;3)Scalabilityischallengingduetoserver-specificstorage;4)Sessionexpirationmanagementcanbeproblematic;5)Datapersis

Explain how load balancing affects session management and how to address it.Explain how load balancing affects session management and how to address it.Apr 29, 2025 am 12:42 AM

Load balancing affects session management, but can be resolved with session replication, session stickiness, and centralized session storage. 1. Session Replication Copy session data between servers. 2. Session stickiness directs user requests to the same server. 3. Centralized session storage uses independent servers such as Redis to store session data to ensure data sharing.

Explain the concept of session locking.Explain the concept of session locking.Apr 29, 2025 am 12:39 AM

Sessionlockingisatechniqueusedtoensureauser'ssessionremainsexclusivetooneuseratatime.Itiscrucialforpreventingdatacorruptionandsecuritybreachesinmulti-userapplications.Sessionlockingisimplementedusingserver-sidelockingmechanisms,suchasReentrantLockinJ

Are there any alternatives to PHP sessions?Are there any alternatives to PHP sessions?Apr 29, 2025 am 12:36 AM

Alternatives to PHP sessions include Cookies, Token-based Authentication, Database-based Sessions, and Redis/Memcached. 1.Cookies manage sessions by storing data on the client, which is simple but low in security. 2.Token-based Authentication uses tokens to verify users, which is highly secure but requires additional logic. 3.Database-basedSessions stores data in the database, which has good scalability but may affect performance. 4. Redis/Memcached uses distributed cache to improve performance and scalability, but requires additional matching

Define the term 'session hijacking' in the context of PHP.Define the term 'session hijacking' in the context of PHP.Apr 29, 2025 am 12:33 AM

Sessionhijacking refers to an attacker impersonating a user by obtaining the user's sessionID. Prevention methods include: 1) encrypting communication using HTTPS; 2) verifying the source of the sessionID; 3) using a secure sessionID generation algorithm; 4) regularly updating the sessionID.

See all articles

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

Video Face Swap

Video Face Swap

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

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor