int ord(string $text)
(PHP 4, PHP 5)
| $text | The source string to read. |
|---|---|
| RETURNS | The ASCII character code (as an integer) for the first character of $text. |
This function interprets the ASCII character code for the first character of the source string ($text) and returns this as an integer.
// Get the ASCII Code for the letter 'A' $code = ord('Awesome!'); echo 'ASCII Code: '.$code;