Tools, FAQ, Tutorials:
Converting Character to ASCII Value in PHP
How To Convert a Character to an ASCII Value?
✍: FYIcenter.com
If you want to convert characters to ASCII values, you can use the ord() function, which takes the first character of the specified string, and returns its ASCII value in decimal format. ord() complements chr(). Here is a PHP script on how to use ord():
<?php
print(ord("Hello")."\n");
print(chr(72)."\n");
?>
This script will print:
72 H
⇐ Generating Character from ASCII Value in PHP
2016-10-13, ∼5250🔥, 0💬
Popular Posts:
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...
How to use "link" command tool to link objet files? If you have object files previously compiled by ...
How To Create an Array with a Sequence of Integers or Characters in PHP? The quickest way to create ...
How to add an API to an API product for internal testing on the Publisher Portal of an Azure API Man...
How to decode the id_token value received from Google OpenID Connect authentication response? Accord...