PHP is_readable 文件系统函数
-
定义和用法
is_readable - 判断给定文件名是否可读 -
版本支持
PHP4 PHP5 PHP7 支持 支持 支持 -
语法
is_readable ( string $filename )
判断给定文件名是否存在并且可读。 -
参数
参数 必需的 描述 filename 是 文件的路径。 -
返回值
如果由 filename 指定的文件或目录存在并且可读则返回 TRUE,否则返回 FALSE。 -
示例
<?php $filename = 'test.txt'; if (is_readable($filename)) { echo 'The file is readable'; } else { echo 'The file is not readable'; } ?>
-