PHP | is_readable 函数
Lasted 2021-01-18 21:21:04
is_readable 函数判断给定文件名是否可读。
函数定义
is_readable ( string $filename ) : bool
// 源文件位于:ext/standard/filestat.c
# 函数定义
FileFunction(PHP_FN(is_readable), FS_IS_X)
参数
- checkfilename - 文件名。
返回值
- checkbool - 如果由 filename 指定的文件或目录存在并且可读则返回 true,否则返回 false。
示例1: - 使用 is_readable() 判断给定文件名是否可读。
<?php
/**
* PHP is_readable() 判断给定文件名是否可读。
*
* @since Version 1.0.0
* @filesource
*/
// 判断是否为可读
if(is_readable("foo.txt")){
echo 'The file is readable.';
}
The file is readable.