Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mkdir("/path/to/my/dir", 0700);
0777中的0是必要的吗?
是的。前导零将使数字解释为八进制数;没有它会被解释为十进制数。
var_dump(0700); // int(448) var_dump(700); // int(700)
前导零表示八进制值。另请参阅chmod的文档。
是的。这是一个八进制文字