is_writeable() 函數檢查文件是否可寫。如果文件存在且可寫,則返回 TRUE。
is_writeablle() 函數是 is_writable() 的別名。使用 is_writeable() 代替 is_writable() 的一個好處是,在搜索包含單詞 "table" 的文件的源代碼時,is_writable() 函數會汙染搜索結果。
用法
is_writeable(file_path)
參數
file_path −要檢查的文件的路徑。
返回
如果文件存在且可寫,則 is_writeable() 函數返回 TRUE。
示例
<?php
$file = "demo.txt";
if(is_writeable($file)) {
echo ("File is writeable!");
} else {
echo ("File is not writeable!");
}
?>
輸出
File is not writeable!
相關用法
- PHP is_writable()用法及代碼示例
- PHP is_file( )用法及代碼示例
- PHP is_link( )用法及代碼示例
- PHP is_link()用法及代碼示例
- PHP is_subclass_of()用法及代碼示例
- PHP is_long()用法及代碼示例
- PHP is_iterable()用法及代碼示例
- PHP is_float()用法及代碼示例
- PHP is_object()用法及代碼示例
- PHP is_callable()用法及代碼示例
- PHP is_executable()用法及代碼示例
- PHP is_dir( )用法及代碼示例
- PHP is_dir()用法及代碼示例
- PHP is_nan()用法及代碼示例
- PHP is_readable( )用法及代碼示例
- PHP is_uploaded_file()用法及代碼示例
- PHP is_string()用法及代碼示例
- PHP is_resource()用法及代碼示例
- PHP is_finite()用法及代碼示例
注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 is_writeable() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。