int ord ( string string ) Returns the ASCII value of the first character of string. This function complements chr(). 例子1. ord() example <?php$str = "\n";if (ord($str) == 10) { echo "The first character of \$str is a line feed.\n";}?> You can find an ASCII-table ...