(PHP 4, PHP 5)
ord — Restituisce il valore ASCII di un carattere
$string
)
Restituisce il valore ASCII del primo carattere di
string
. Questa è la funzione complementare di
chr().
Example #1 Esempio di uso di ord()
<?php
$str = "\n";
if (ord($str) == 10) {
echo "The first character of \$str is a line feed.\n";
}
?>
Qui si può reperire la tabella ASCII: » http://www.asciitable.com.
Vedere anche chr().