PHP中0777这里的0是必须的吗?
mkdir("/path/to/my/dir", 0700);
0777中的0有必要吗?
mkdir("/path/to/my/dir", 0700);
Is the 0 in 0777 necessary?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
mkdir("/path/to/my/dir", 0700);
0777中的0有必要吗?
mkdir("/path/to/my/dir", 0700);
Is the 0 in 0777 necessary?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
是的。前导零将使数字解释为八进制数;如果没有它,将被解释为十进制数。
Yes. The leading zero will make the number interpreted as octal number; without it would be interpreted as decimal number.
前导零表示 八进制 值。
另请参阅 chmod 的文档。
The leading zero indicates an octal value.
See also the documentation of chmod.
是的。这是一个 八进制 文字
Yes. It's an octal literal