PHP is_writable() 函数
实例
检查指定的文件名是否可写:
<?php
$file = "test.txt";
if(is_writable($file)) {
echo ("$file is writable");
} else {
echo ("$file is not writable");
}
?>
$file = "test.txt";
if(is_writable($file)) {
echo ("$file is writable");
} else {
echo ("$file is not writable");
}
?>
以上代码的输出:
test.txt is writable
定义和用法
is_writable() 函数判断指定的文件是否可写。
注释: 该函数的结果被缓存。 使用 clearstatcache() 清除缓存。
语法
is_writable(file)
参数值
参数 | 描述 |
---|---|
file | 必需。规定要检查的文件。 |
说明
如果文件存在并且可写则返回 true。file 参数可以是一个允许进行是否可写检查的目录名。
提示和注释
注释:本函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。
技术细节
返回值: | 如果文件可写,则为 TRUE,失败时发出 E_WARNING |
---|---|
PHP 版本: | 4.0+ |