php 和 chmod 不起作用

发布于 2024-11-02 19:18:29 字数 99 浏览 0 评论 0原文

您好,我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜灵血窟げ 2024-11-09 19:18:29

嘿,你可以做一件事......转到控制台并使用 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........

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文