Home  >  Article  >  php教程  >  php is_writable 函数文件是否可写

php is_writable 函数文件是否可写

WBOY
WBOYOriginal
2016-06-13 11:17:211206browse

下面是讲关于is_writable 文件是否可读取写哦。  

下面是讲关于is_writable 文件是否可读取写哦。

is_writable
( PHP 4中, PHP 5中)

is_writable -告诉是否filename是写

描述
布尔is_writable (字符串$文件名)
返回TRUE ,如果文件存在且可写。该文件名参数可能是一个目录名称,让您可以检查,如果是可写的目录。

请记住, PHP的可访问该文件的用户ID的Web服务器运行(通常是'谁' ) 。安全模式的限制是没有考虑到。

参数

文件名
正在检查的文件名。


返回值
返回TRUE ,如果文件存在且可写。

实例

例如# 1 is_writable ( )的例子

$filename = 'test.txt';
if (is_writable($filename)) {
    echo 'The file is writable';
} else {
    echo 'The file is not writable';
}
?>


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn