(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::isReadable — Tells if file is readable
Esta função não possui parâmetros.
Returns true
if readable, false
otherwise.
Exemplo #1 SplFileInfo::isReadable() example
<?php
$info = new SplFileInfo('readable.jpg');
if ($info->isReadable()) {
echo $info->getFilename() . ' is readable';
}
?>
O exemplo acima produzirá algo semelhante a:
readable.jpg is readable