PHP - Funzione ctype_lower ()
Sintassi
ctype_lower ( $text );
Definizione e utilizzo
Questa funzione controlla se tutti i caratteri nella stringa fornita, il testo, sono lettere minuscole.
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | text(Required) La stringa testata. |
Valore di ritorno
Restituisce TRUE se ogni carattere nel testo è una lettera minuscola nelle impostazioni internazionali correnti.
Esempio
Prova il seguente esempio:
<?php
$strings = array('aac123', 'testing', "testin IS Done");
foreach ($strings as $test) {
if (ctype_lower($test)) {
echo "$test consists of all lowercase letters. \n";
}else {
echo "$test does not have all lowercase letters. \n";
}
}
?>
Questo produrrà il seguente risultato:
aac123 does not have all lowercase letters.
testing consists of all lowercase letters.
testin IS Done does not have all lowercase letters.