";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使用递归创建多级目录
本文共 294 字,大约阅读时间需要 1 分钟。
";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使用递归创建多级目录
转载于:https://www.cnblogs.com/myall/p/4798096.html