最新的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文件系統參考