PHP - Funzione ctype_space ()
Sintassi
ctype_space ( $text );
Definizione e utilizzo
Questa funzione controlla se tutti i caratteri nella stringa fornita, testo, creano spazi vuoti.
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | text(Required) La stringa testata. |
Valore di ritorno
Restituisce VERO se ogni carattere nel testo crea una sorta di spazio bianco, FALSO in caso contrario. Oltre al carattere vuoto, questo include anche caratteri di tabulazione, tabulazione verticale, avanzamento riga, ritorno a capo e avanzamento modulo.
Esempio
Prova il seguente esempio:
<?php
$strings = array('\n\r\t', '\test123' );
foreach ($strings as $test) {
if (ctype_space($test)) {
echo "$test consists of all whitespace characters. \n";
}else {
echo "$test does not have all whitespace characters. \n";
}
}
?>
Questo produrrà il seguente risultato:
\n\r\t does not have all whitespace characters.
\test123 does not have all whitespace characters.