PHP is_writeable() 函数
PHP is_writeable() 函数
完整的 PHP Filesystem 参考手册定义和用法
is_writeable() 函数检查指定的文件是否可写。
如果文件可写,该函数返回 TRUE。
该函数是 is_writable() 函数的别名。
语法
is_writeable(file)
参数 | 描述 |
---|---|
file | 必需。规定要检查的文件。 |
提示和注释
注释:该函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。
实例
<?php
$file = "test.txt";
if(is_writeable($file))
{
echo ("$file is writeable");
}
else
{
echo ("$file is not writeable");
}
?>
$file = "test.txt";
if(is_writeable($file))
{
echo ("$file is writeable");
}
else
{
echo ("$file is not writeable");
}
?>
上面的代码将输出:
test.txt is writeable
完整的 PHP Filesystem 参考手册
相关文章
- PHP 语法
- PHP 数据类型
- PHP 命名空间 namespace
- PHP array_change_key_case() 函数
- PHP array_key_first() 函数
- PHP array_map() 函数
- PHP array_pop() 函数
- PHP array_rand() 函数
- PHP array_replace() 函数
- PHP array_unique() 函数
- PHP array_walk_recursive() 函数
- PHP natsort() 函数
- PHP next() 函数
- PHP prev() 函数
- PHP reset() 函数
- PHP uasort() 函数
- PHP uksort() 函数
- PHP Error 和 Logging 函数
- PHP FTP 函数
- PHP 杂项 函数