php修改檔案權限
在php中修改檔案權限,可以透過使用php中「chmod()」函數進行權限修改
chmod說明和語法
chmod會嘗試將filename 所指定檔案的模式改為mode 所給定的。
chmod ( string $filename , int $mode ) : bool
chmod參數
filename:檔案的路徑。
mode:
注意 mode 不會被自動當成八進制數值,也不能用字串(例如 "g w")。要確保正確操作,需要在 mode 前面加上 0:
<?php chmod("/somedir/somefile", 755); // 十进制数,可能不对 chmod("/somedir/somefile", "u+rwx,go+rx"); // 字符串,不对 chmod("/somedir/somefile", 0755); // 八进制数,正确的 mode 值 ?>
mode 參數包含三個八進位數依序分別指定了擁有者、擁有者所在的群組以及所有人的存取限制。每一部分都可以透過加入所需的權限來計算出所要的權限。數字 1 表示使文件可執行,數字 2 表示使文件可寫,數字 4 表示使文件可讀。加入這些數字來制定所需的權限。有關 UNIX 系統的檔案權限可以閱讀手冊“man 1 chmod”和“man 2 chmod”。
<?php // Read and write for owner, nothing for everybody else chmod("/somedir/somefile", 0600); // Read and write for owner, read for everybody else chmod("/somedir/somefile", 0644); // Everything for owner, read and execute for others chmod("/somedir/somefile", 0755); // Everything for owner, read and execute for owner's group chmod("/somedir/somefile", 0750); ?>
chmod傳回值
成功時傳回 TRUE, 或失敗時傳回 FALSE。
以上是php修改檔案權限的詳細內容。更多資訊請關注PHP中文網其他相關文章!