最新的Web开发教程
 

PHP is_readable() Function


<完整PHP文件系统参考

定义和用法

所述is_readable()函数检查是否指定的文件是可读的。

如果该文件是可读此函数返回TRUE。

句法

is_readable(file)

参数 描述
file 需要。 指定文件检查

提示和注意

Note:本函数的结果会被缓存。 使用clearstatcache()来清除缓存。


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

代码的输出以上可以是:

test.txt is readable

<完整PHP文件系统参考