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 () 在 PHP 中创建一个目录。它可以工作,但 PHP 将随机数放在名称的末尾:
mkdir (testdir);
创建一个目录 testdir511。有没有什么办法解决这一问题 ?
.在分隔参数时,您可能使用了 (the concatenation thingy) 而不是逗号:
.
$ php <?php mkdir("test" . 655); // should be mkdir("test", 655); ?> $ ls test655/