我对文件具有写权限,但无法使用“unlink()”删除它的功能
我用谷歌搜索了一下,找不到任何适合我的答案。我试图取消链接文件,但没有任何反应,也没有出现错误(display_errors() 停止加载页面)。代码如下。谢谢!
chdir("/var/www/lib.techtri.be/");
unlink("/var/www/lib.techtri.be/R1Count.txt");
编辑:我知道不需要 chdir,它只是用于文件中的后面部分。
I've Googled around a bit, and can't find any answer that works for me. I'm trying to unlink a file, but nothing happens and no errors appear (display_errors() stopped the page from loading). The code is below. Thanks!
chdir("/var/www/lib.techtri.be/");
unlink("/var/www/lib.techtri.be/R1Count.txt");
Edit: I know the chdir isn't needed, that's just for the later parts in the file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当您对包含该文件的目录也具有写入权限时,才可以删除该文件。
You can only delete a file if you also have write permission on the directory containing it.