答案:递归。 function createFolder($path) { if (!file_exists($path)) { createFolder(dirname($path)); mkdir($path, 0777); } } createFolder("aa/bb/cc/dd/ee");
递归。 function createFolder($path) { if (!file_exists($path)) { createFolder(dirname($path)); mkdir($path, 0777); } } createFolder("aa/bb/cc/dd/ee");
上一个:不用php的xml解析函数解析xml下一个:php为什么不支持函数重载啊?