Sintaxe
ctype_lower ( $text );
Definição e Uso
Esta função verifica se todos os caracteres na string fornecida, texto, são letras minúsculas.
Parâmetros
Sr. Não |
Parâmetro e Descrição |
1 |
text(Required)
A corda testada.
|
Valor de retorno
Ele retorna TRUE se cada caractere no texto for uma letra minúscula no local atual.
Exemplo
Experimente o seguinte exemplo -
<?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";
}
}
?>
Isso produzirá o seguinte resultado -
aac123 does not have all lowercase letters.
testing consists of all lowercase letters.
testin IS Done does not have all lowercase letters.