(PHP 4, PHP 5)
ord — Return ASCII value of character
Returns the ASCII value of the first character of string .
This function complements chr().
A character.
Returns the ASCII value as an integer.
Example#1 ord() example
<?php
$str = "\n";
if (ord($str) == 10) {
echo "The first character of \$str is a line feed.\n";
}
?>
| Affiliate Directory - Sign Up - Priviledged Members - Articles - Web Resources - Discussion - Contact Us - Link Exchange - HTML4 Manual - HTML3 Manual - PHP Manual |