PHP - Manual: SplFileInfo::isReadable
2024-11-14
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
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)
官方地址:https://www.php.net/manual/en/splfileinfo.isreadable.php