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, 2368👍, 0💬
Popular Posts:
How to register and get an application ID from Azure AD? The first step to use Azure AD is to regist...
How To Create an Array with a Sequence of Integers or Characters in PHP? The quickest way to create ...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...
How to access URL template parameters from "context.Request.Matched Parameters"object in Azure API P...
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...