PHP - Funzione ctype_alpha ()
Sintassi
ctype_alpha ( $text );
Definizione e utilizzo
Controlla se tutti i caratteri nella stringa fornita, testo, sono alfabetici.
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | text(Required) La stringa testata. |
Valore di ritorno
Restituisce VERO se ogni carattere nel testo è una lettera, FALSO in caso contrario.
Esempio
Prova il seguente esempio:
<?php
$strings = array('example', 'example1234');
foreach ($strings as $test) {
if (ctype_alpha($test)) { echo "$test consists of all letters. \n";
}else {
echo "$test does not have all letters. \n";
}
}
?>
Questo produrrà il seguente risultato:
example consists of all letters.
example1234 does not have all letters.