PHP | is_writable 函數
怎樣判斷文件或目錄是否可寫
最近更新時間 2021-01-18 21:57:06
is_writable 函數判斷給定的文件名是否可寫。
如果文件存在並且可寫則返回 true。filename 參數可以是一個允許進行是否可寫檢查的目錄名。別名函數 is_writeable()。
函數定義
is_writable ( string $filename ) : bool
// 源文件位於:ext/standard/filestat.c
# 函數定義
FileFunction(PHP_FN(is_writable), FS_IS_W)
參數
- checkfilename - 文件名。
返回值
- checkbool - 如果文件 filename 存在並且可寫則返回 true,否則返回 false。
示例1: - 使用 is_writable() 判斷文件名是否可寫。
<?php
/**
* PHP is_writable() 判斷文件名是否可寫。
*
* @since Version 1.0.0
* @filesource
*/
// 判斷是否可寫
if(is_writable("foo.txt")){
echo 'The file is writable.';
}
The file is writable.