php 中的 mkdir() 将文件夹权限设置为 755 但我需要 777?
我试图使用 php 在我的服务器上创建一个文件夹,当我将其设置为 0777 时,它显示为 755?
mkdir($create_path, 0777);
谢谢
I am trying to create a folder on my server using php when i set it to 0777 it comes out as 755?
mkdir($create_path, 0777);
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个:
http://php.net/umask
Try this:
http://php.net/umask
这真的对我有用!,你现在应该关闭这个问题!
授予777权限!
享受它!
This really works for me!, you should close now this question!
Give 777 permissions!
Enjoy it!
试试这个:
参考
Try this:
Reference
该进程的 umask 设置为 0022。如果您想创建设置了这两个写入位的内容,则需要将其设置为 0。
The umask of the process is set to 0022. You'll need to set it to 0 if you want to create something with those two write bits set.