(PHP 5 >= 5.1.2)
SplFileInfo::isReadable — Tells if file is readable
Check if the file is readable.
この関数にはパラメータはありません。
Returns TRUE if readable, FALSE otherwise.
例1 SplFileInfo::isReadable() example
<?php
$info = new SplFileInfo(__FILE__);
var_dump($info->isReadable());
$info = new SplFileInfo('foo');
var_dump($info->isReadable());
?>
上の例の出力は、たとえば 以下のようになります。
bool(true) bool(false)