Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 unlink() 函数从服务器中删除另一个 php 文件:
unlink('../classes/methods.class.php');
但我得到一个 permession denied 警告。虽然我对那个文件做了 chmod 777
chmod -尝试更改文件或目录的权限。
您很可能不允许 chmod 文件(如果您尝试通过 PHP 更改许可)或取消链接,因为您不是文件所有者。了解文件所有权,而不仅仅是许可。