我如何知道哪种模式适合创建文件夹
我在这个方面遇到了困难,我想创建具有写入权限的文件夹,我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.