检查指定文件名是否可写:
<?php
$file = "test.txt";
if(is_writable($file)) {
echo ("$file is writable");
} else {
echo ("$file is not writable");
}
?>
上面代码的输出可能是:
test.txt is writable
is_writable() 函数检查指定的文件名是否可写。
笔记:该函数的结果被缓存。使用清除统计缓存()清除缓存。
is_writable(
file)
Parameter | Description |
---|---|
file | Required. Specifies the path to the file to check |
返回值: | 如果文件可写则为 TRUE,如果失败则为 E_WARNING |
---|---|
PHP 版本: | 4.0+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!