(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::isReadable — 判断文件是否可读
此函数没有参数。
示例 #1 SplFileInfo::isReadable() 示例
<?php
$info = new SplFileInfo('readable.jpg');
if ($info->isReadable()) {
echo $info->getFilename() . ' is readable';
}
?>
上面的示例将输出类似于
readable.jpg is readable