<Completa PHP Sistema de Arquivos de Referência
Definição e Uso
Os is_readable() função verifica se o arquivo especificado é legível.
Esta função retorna TRUE se o arquivo é legível.
Sintaxe
is_readable(file)
Parâmetro | Descrição |
---|---|
file | Requeridos. Especifica o arquivo para verificar |
Dicas e Notas
Note: O resultado desta função é cacheada. Use clearstatcache() para limpar o cache.
Exemplo
<?php
$file = "test.txt";
if(is_readable($file))
{
echo ("$file is readable");
}
else
{
echo ("$file is not readable");
}
?>
A saída do código acima poderia ser:
test.txt is readable
<Completa PHP Sistema de Arquivos de Referência