Javascript debugger Website design ↑
Returns the ASCII value of the first character of string.
This function complements chr().
A character.
Returns the ASCII value as an integer.
<?php $str = "\n"; if (ord($str) == 10) { echo "The first character of \$str is a line feed.\n"; } ?>
Javascript debugger Website design