(PHP 4 >= 4.0.4, PHP 5)
ctype_space — Controlla gli spazi
$text
)
Controlla che tutti i caratteri nella string,
text
fornita, creino spazi.
text
La stringa da testare.
Restituisce TRUE
se ogni carattere di text
crea qualsiasi tipo di spazio bianco, FALSE
in caso contrario. Oltre al
carattere spazio, questo include anche i caratteri tab, tab verticale, line feed (avanza di una riga),
carriage return (a capo) e form feed (avanza di un modulo).
Example #1 Un esempio di ctype_space()
<?php
$strings = array('string1' => "\n\r\t", 'string2' => "\narf12", 'string3' => '\n\r\t');
foreach ($strings as $name => $testcase) {
if (ctype_space($testcase)) {
echo "The string '$name' consists of all whitespace characters.\n";
} else {
echo "The string '$name' does not consist of all whitespace characters.\n";
}
}
?>
Il precedente esempio visualizzerà:
The string 'string1' consists of all whitespace characters. The string 'string2' does not consist of all whitespace characters. The string 'string3' does not consist of all whitespace characters.
Nota:
Se è fornito un integer tra -128 e 255, viene interpretato come il valore ASCII di un singolo carattere (ai valori negativi viene aggiunto 256 in modo da permettere i caratteri Extended ASCII). Qualsiasi altro intero è interpretato come una stringa contenente le cifre decimali dell'intero.