循环创建目录 2015/12/17 16798 function createDir($path){ if (!file_exists($path)){ createDir(dirname($path)); mkdir($path, 0777); } }