PHP chmod函数——更改指定文件所属的模式,chmod函数可更改指定文件所属的模式,如果操作成功则返回true,否则返回false。
PHP chmod函数 语法
bool chmod(string filename, int mode)
参数filename为必选参数,指定要更改模式的文件名称;参数mode为必选参数,用于指定文件模式。
PHP chmod函数 示例
本示例应用chmod()函数将文件index.php的模式更改为0755
代码如下:
<?php
chmod("/usr/local/apache/htdoc/index.php",0755);
?>
chmod()函数只能在Linux或UNIX下应用,在Windows系统中不执行任何操作而返回true。