我如何知道哪种模式适合创建文件夹

发布于 2025-01-05 04:34:57 字数 186 浏览 1 评论 0原文

我在这个方面遇到了困难,我想创建具有写入权限的文件夹,我使用 mkdir('folder', 0777)

根据 php 手册 0777 是最广泛的访问权限。但在创建文件夹后,当我使用 filezilla 检查它时,我只看到所有者有写权限,但公共和组未选中,我是否使用了错误的模式或其他什么?

im having hard time with this one, i want to create folder with write permisions, im doing it with mkdir('folder', 0777)

According to php manual 0777 is the widest possible access. but still after creating folder when i check it with filezilla i see write permision only on owner but public and group is unchecked, am i using wrong mode or something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浅笑依然 2025-01-12 04:34:57

umask 还限制了权限。

几乎不可能出现 0777 实际上是正确的、有用的值的情况;您应该了解您在做什么以及您需要什么权限。

The umask limits the permissions also.

There would hardly be a situation where 0777 is actually a correct, useful value; you should understand what you are doing and what permissions you need.

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