php 和 chmod 不起作用
您好,我想使用 php 编写一个文件,但首先我应该设置权限。当我尝试 chmod($file,0777); 时,它不起作用并返回 false。
如何启用chmod功能?
Hi I want to write a file by using php, but first I should set permissions. When I try chmod($file,0777);
it doesn't work and returns false.
What should I do for enable chmod function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嘿,你可以做一件事......转到控制台并使用 ll 命令查看文件写入及其用户......
如果用户不是 apache 用户,那么即使您在语法上是正确的,它也会给您错误。因此,使用 chgrp 和 chrown 命令将文件的组和所有者更改为 apache,然后运行代码...您可以看到输出。 …………
Hey you can do one thing.....go to console and see the file writes and its user using ll command...
if user is not a apache user then its will gives you error even if you are syntactically right..so change the group and owner of file to apache using chgrp and chrown command and then run the code...you can see the output........