Tools, FAQ, Tutorials:
Generating Character from ASCII Value in PHP
How To Generate a Character from an ASCII Value?
✍: FYIcenter.com
If you want to generate characters from ASCII values, you can use the chr() function. chr() takes the ASCII value in decimal format and returns the character represented by the ASCII value. chr() complements ord(). Here is a PHP script on how to use chr():
<?php
print(chr(72).chr(101).chr(108).chr(108).chr(111)."\n");
print(ord("H")."\n");
?>
This script will print:
Hello 72
⇒ Converting Character to ASCII Value in PHP
⇐ Converting Strings to Hex Numbers in PHP
2016-10-13, ∼2812🔥, 0💬
Popular Posts:
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...
How To Break a File Path Name into Parts in PHP? If you have a file name, and want to get different ...
Can You Add Values to an Array without Keys in PHP? Can You Add Values to an Array with a Key? The a...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows i...