A função is_readable () pode verificar se o arquivo especificado é legível. Esta função pode retornar verdadeiro se o arquivo for legível.
Sintaxe
bool is_readable ( string $filename )
Esta função pode dizer se um arquivo existe e é legível.
Exemplo
<?php
$file = "/PhpProject/php/phptest.txt";
if(is_readable($file)) {
echo ("$file is readable");
} else {
echo ("$file is not readable");
}
?>
Resultado
/PhpProject/php/phptest.txt is readable