php

php中的is_writable函数怎么用

2023-09-21

php中 is_writable函数用于判断该文件是否可写,is_writable函数的语法是is_writable(file),参数file必需,指规定要检查的文件。

作用:判断该文件是否可写,如果文件可写,该函数返回 TRUE。

语法:is_writable(file)


参数

file必需。规定要检查的文件。


说明:

如果文件存在并且可写则返回 true。file 参数可以是一个允许进行是否可写检查的目录名。


php is_writable()函数 示例

<?php

$file = is_writable("./test.txt");

if($file == 1)

{

    echo "该文件是可写的";

}else{

    echo "该文件不可写";

}

?>


提示和注释

注释:该函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。

<?php

$file = "test.txt";

if(is_writable($file))

{

echo ("$file is writeable");

}

else

{

echo ("$file is not writeable");

}

?>

上面的代码将输出:

test.txt is writeable