时间:2021-07-01 10:21:17 帮助过:36人阅读
下面的代码先判断目录是否存在,然后通过mkdir()函数在服务器上创建了一个目录
<?php if (file_exists("/temp/test")) { print("Test Directory already exists.\n"); } else { mkdir("/temp/test"); print("Test Directory created.\n"); } ?>
输入结果 如果是第一次执行,返回
Test Directory created.
如果再次执行,返回
Test Directory already exists.
希望本文所述对大家的php程序设计有所帮助。