SplFileInfo::isReadable
Tells if file is readable
Description
public bool SplFileInfo::isReadable()
Parameters
This function has no parameters.
Return Values
Returns true
if readable, false
otherwise.
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: