php怎麼設定檔案的許可權

2020-07-16 10:06:34

php設定檔案許可權的方法是:

使用chmod函數
mode 引數包含三個八進位制數按順序分別指定了所有者、所有者所在的組以及所有人的存取限制。每一部分都可以通過加入所需的許可權來計算出所要的許可權。數位 1 表示使檔案可執行,數位 2 表示使檔案可寫,數位 4 表示使檔案可讀。加入這些數位來制定所需要的許可權。

<?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);
?>

相關參考:TW511.COM

以上就是php怎麼設定檔案的許可權的詳細內容,更多請關注TW511.COM其它相關文章!