PHP chmod()函数

PHP chmod()函数

chmod() 函数可以改变指定文件的权限。成功时返回 true,失败时返回 false。

语法

bool chmod ( string filename, int mode )

尝试将指定文件的模式更改为mode参数指定的模式。

模式不会自动地转换为八进制值,所以字符串(比如”g+w”)无法正常工作。为了确保期望的操作,我们需要在mode前加零(0)。

参数”mode”由三个八进制数字组成:所有者的访问限制、所有者所在的用户组以及其他所有人。数字1表示我们授予执行权限,数字2表示我们使文件可写,数字4表示我们使文件可读。我们可以添加这些数字来指定所需的权限。

示例

<?php
   // Read and write for owner, nothing for everybody else
   chmod("/PhpProject/sample.txt", 0600);

   // Read and write for owner, read for everybody else
   chmod("/PhpProject/sample.txt", 0644);

   // Everything for owner, read and execute for everybody else
   chmod("/PhpProject/sample.txt", 0755);

   // Everything for owner, read for owner's group
   chmod("/PhpProject/sample.txt", 0740);
?>

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程