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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。