PHP | is_readable()函数
PHP中的 is_readable()函数用于检查指定文件是否存在以及是否可读。文件名作为参数发送给 is_readable()函数,如果文件存在且可读,则返回 True。
is_readable()函数对流返回 False,例如PHP://stdin。
is_readable()函数也可以与一些 URL 包装器一起使用,例如PHP 5.0.0 中的 file: // ,http:// ,ftp:// , PHP :// 。
句法:
is_readable($file)
使用的参数:
PHP中的 is_readable()函数只接受一个参数。
- file :它是指定文件的强制参数。
返回值:
如果指定的文件或目录存在并且可读,则返回 True,否则返回 False。
例外:
- 失败时发出 E_WARNING。
- 此函数的结果被缓存,因此 clearstatcache()函数用于清除缓存。
下面的程序说明了 is_readable()函数。
程序 1
输出:
gfg.txt is readable
节目二
输出:
gfg.txt is readable
Contents of the file are :
Portal for geeks!
方案 3
输出:
File is Readable and File Permissions are : 0644
相关文章: PHP | is_writable()函数
参考:
http:// PHP.net/manual/en/函数.is-可读。 PHP