PHP - Funzione ctype_digit ()
Sintassi
ctype_digit ( $text );
Definizione e utilizzo
Controlla se tutti i caratteri nella stringa fornita, testo, sono numerici. Controlla solo 1 ... 9
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | text(Required) La stringa testata. |
Valore di ritorno
Restituisce TRUE se ogni carattere nel testo è una cifra decimale, FALSE in caso contrario.
Esempio
Prova il seguente esempio:
<?php
$strings = array('122.50', '1004', 'foo!#$bar'); foreach ($strings as $test) { if (ctype_digit($test)) {
echo "$test consists of all digits. \n"; }else { echo "$test does not have all digits. \n";
}
}
?>
Questo produrrà il seguente risultato:
122.50 does not have all digits
1004 consists of all digits
foo!#$bar does not have all digits