<完整PHP文件系统参考
定义和用法
的is_writable()函数检查是否指定的文件是可写的。
如果该文件是可写的这个函数返回TRUE。
句法
is_writable(file)
参数 | 描述 |
---|---|
file | 需要。 指定文件检查 |
提示和注意
Note:本函数的结果会被缓存。 使用clearstatcache()来清除缓存。
例
<?php
$file = "test.txt";
if(is_writable($file))
{
echo ("$file is writeable");
}
else
{
echo ("$file is not writeable");
}
?>
代码的输出以上可以是:
test.txt is writeable
<完整PHP文件系统参考