PHP is_writeable() 函數(shù)
PHP is_writeable() 函數(shù)

定義和用法
is_writeable() 函數(shù)檢查指定的文件是否可寫。
如果文件可寫,該函數(shù)返回 TRUE。
該函數(shù)是 is_writable() 函數(shù)的別名。
語法
is_writeable(file)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要檢查的文件。 |
提示和注釋
注釋:該函數(shù)的結(jié)果會被緩存。請使用 clearstatcache() 來清除緩存。
實例
<?php
$file = "test.txt";
if(is_writeable($file))
{
echo ("$file is writeable");
}
else
{
echo ("$file is not writeable");
}
?>
$file = "test.txt";
if(is_writeable($file))
{
echo ("$file is writeable");
}
else
{
echo ("$file is not writeable");
}
?>
上面的代碼將輸出:
test.txt is writeable

相關(guān)文章
- PHP 語法
- PHP 數(shù)據(jù)類型
- PHP 命名空間 namespace
- PHP array_change_key_case() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP natsort() 函數(shù)
- PHP next() 函數(shù)
- PHP prev() 函數(shù)
- PHP reset() 函數(shù)
- PHP uasort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP FTP 函數(shù)
- PHP 雜項 函數(shù)