PHP
文件系统 | File System

is_readable

is_readable

(PHP 4, PHP 5, PHP 7)

is_readable - 告诉文件是否存在并且可读

描述

bool is_readable ( string $filename )

告诉文件是否存在并且可读。

参数

filename

文件的路径。

返回值

Returns TRUE if the file or directory specified by filename exists and is readable, FALSE otherwise.

例子

Example #1 is_readable() example

<?php $filename = 'test.txt'; if (is_readable($filename)) {     echo 'The file is readable'; } else {     echo 'The file is not readable'; } ?>

错误/异常

发生故障时,E_WARNING发射。

注意

请记住,PHP可能会以Web服务器运行的用户标识(通常是“nobody”)访问该文件。PHP 5.1.5之前不考虑安全模式限制。

注意:这个函数的结果被缓存。有关更多详细信息,请参阅clearstatcache()。

提示

从PHP 5.0.0开始,这个函数也可以用于一些 URL包装器。请参阅支持的协议和包装以确定哪些包装支持stat()系列功能。

注意:检查使用真实的UID / GID而不是有效的检查。

该函数可能会返回TRUE目录。使用is_dir()来区分文件和目录。