SplFileInfo::isReadable
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::isReadable — Tells if file is readable
Parameters
This function has no parameters.
Examples
Example #1 SplFileInfo::isReadable() example
<?php
$info = new SplFileInfo('readable.jpg');
if ($info->isReadable()) {
echo $info->getFilename() . ' is readable';
}
?>The above example will output something similar to:
readable.jpg is readable
↑ and ↓ to navigate • Enter to select • Esc to close • / to open