首页 > 编程 > PHP > 正文

php使用递归创建多级目录

2019-11-14 14:47:05
字体:
来源:转载
供稿:网友
<?phpheader('Content-type:text/html;charset=utf8');echo "Loading time:".date('Y-m-d H:i:s');sleep(5);echo "<br>";echo "End time:".date('Y-m-d H:i:s');// 多级目录新建function createFolder($path){    if(!file_exists($path)){        createFolder(dirname($path));        mkdir($path, 0777);    }}createFolder("/Library/WebServer/Documents/aa/bb/cc");?>

php使用递归创建多级目录


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表