Sintaxe
ctype_graph ( $text );
Definição e Uso
Esta função verifica se todos os caracteres na string fornecida, texto, cria uma saída visível.
Parâmetros
Sr. Não |
Parâmetro e Descrição |
1 |
text(Required) A corda testada. |
Valor de retorno
Ele retorna TRUE se todos os caracteres no texto forem imprimíveis e realmente criar uma saída visível (sem espaço em branco), FALSE caso contrário.
Exemplo
Experimente o seguinte exemplo -
<?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";
}
}
?>
Isso produzirá o seguinte resultado -
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