


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;$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

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;$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

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;$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

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

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.

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

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.

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

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.

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

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

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.


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

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 English version
Recommended: Win version, supports code prompts!

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