时间:2021-07-01 10:21:17 帮助过:25人阅读
is_writable()定义:
函数判断指定的文件是否可写。
语法:
is_writable($filename);
参数列表:
参数 | 描述 |
---|---|
filename | 必需。规定要检查的文件。 |
实例:
classtest{publicfunctionhello($filename){if(is_writable($filename)){
echo"$filename is writeable";
}else{
echo"$filename is not writeable";
}
}
}
$T=new test();
$T->hello("F:file.txt");
输出结果:
F:file.txt is writeable 版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了php is_writable函数,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。