PHP is_writable() 函數

定義和用法

is_writable() 函數判斷指定的文件是否可寫。

語法

is_writable(file)
參數 描述
file 必需。規定要檢查的文件。

說明

如果文件存在并且可寫則返回 true。file 參數可以是一個允許進行是否可寫檢查的目錄名。

提示和注釋

注釋:本函數的結果會被緩存。請使用 clearstatcache() 來清除緩存。

實例

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

輸出:

test.txt is writeable