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