PHP - Funzione ctype_graph ()
Sintassi
ctype_graph ( $text );
Definizione e utilizzo
Questa funzione controlla se tutti i caratteri nella stringa fornita, testo, creano un output visibile.
Parametri
Suor n | Parametro e descrizione |
---|---|
1 |
text(Required) La stringa testata. |
Valore di ritorno
Restituisce TRUE se ogni carattere nel testo è stampabile e crea effettivamente un output visibile (senza spazi bianchi), altrimenti FALSE.
Esempio
Prova il seguente esempio:
<?php
$strings = array('asdf\n\r\t', 'arf12', 'LKA#@%.54');
foreach ($strings as $test) {
if (ctype_graph($test)) {
echo "$test consists of all (visibly) printable characters \n";
}else {
echo "$test does not have all (visibly) printable characters. \n";
}
}
?>
Questo produrrà il seguente risultato:
asdf\n\r\t consists of all (visibly) printable characters.
arf12 consists of all (visibly) printable characters
LKA#@%.54 consists of all (visibly) printable characters