chmod() 函数可以改变指定文件的权限。成功时返回真,否则返回假。
用法
bool chmod ( string filename, int mode )
尝试将 filename 指定的文件的模式更改为 mode 中给定的模式。
该模式不会自动假定为八进制值,因此字符串(例如 "g+w")无法正常工作。为了确保预期的操作,我们需要在模式前加上零 (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);
?>
相关用法
- PHP chmod()用法及代码示例
- PHP chmod( )用法及代码示例
- PHP chgrp()用法及代码示例
- PHP chroot()用法及代码示例
- PHP chdir()用法及代码示例
- PHP chroot( )用法及代码示例
- PHP chgrp( )用法及代码示例
- PHP chunk_split()用法及代码示例
- PHP chown( )用法及代码示例
- PHP chop()用法及代码示例
- PHP checkdate()用法及代码示例
- PHP checkdnsrr()用法及代码示例
- PHP chown()用法及代码示例
- PHP chr()用法及代码示例
- PHP crypt(), password_hash()用法及代码示例
- PHP ctype_xdigit()用法及代码示例
- PHP closedir( )用法及代码示例
- PHP ctype_punct()用法及代码示例
- PHP cos( )用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Function chmod()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。