ord
Return ASCII value of character
Description
int ord
( string $string
)
This function complements chr.
Parameters
-
string
-
A character.
Return Values
Returns the ASCII value as an integer.
Examples
Example #1 ord example
<?php
$str = "\n";
if (ord($str) == 10) {
echo "The first character of \$str is a line feed.\n";
}
?>