<完整PHP文件系統參考
定義和用法
的is_writable()函數檢查是否指定的文件是可寫的。
如果該文件是可寫的這個函數返回TRUE。
句法
is_writable(file)
參數 | 描述 |
---|---|
file | 需要。 指定文件檢查 |
提示和注意
Note:本函數的結果會被緩存。 使用clearstatcache()來清除緩存。
例
<?php
$file = "test.txt";
if(is_writable($file))
{
echo ("$file is writeable");
}
else
{
echo ("$file is not writeable");
}
?>
代碼的輸出以上可以是:
test.txt is writeable
<完整PHP文件系統參考