可以使用chmod()函數來實現。
語法格式:
chmod(file,mode)
引數介紹:
具體程式碼:
<?php // 所有者可讀寫,其他人沒有任何許可權 chmod("test.txt",0600); // 所有者可讀寫,其他人可讀 chmod("test.txt",0644); // 所有者有所有許可權,其他所有人可讀和執行 chmod("test.txt",0755); // 所有者有所有許可權,所有者所在的組可讀 chmod("test.txt",0740); ?>
更多相關教學請關注TW511.COM。
以上就是php如何更改資料夾許可權的詳細內容,更多請關注TW511.COM其它相關文章!