is_writable() 函數檢查指定的檔案是否可寫入。
如果檔案可寫,則函數傳回TRUE。
is_writable(file)
參數 | 描述 |
---|---|
file | 必需。規定要檢查的文件。 |
註:該函數的結果會被緩存。請使用clearstatcache() 來清除快取。
<?php$file = "test.txt";if(is_writable($file)) { echo ("$file is writeable"); }else { echo ("$file is not writeable"); }?>
上面的程式碼將輸出:
test.txt is writeable