php中mkdir函数递归创建目录(文件夹)
程序员文章站
2024-01-02 10:03:58
...
在php中mkdir函数是创建目录它自身是不可以递归创建目录了,我们需要遍历进行目录然后调用mkdir即可,下面来看一下操作方法。
例
例2
Somehow the recursive version of mkdir didn't work for me on Mac and the workaraounds listed
below alsow didn't work for me, so heres my solution:
0) mkdir($dir, $rights); } } ?>
Tested and works ;)
例3
read())) { if ($child != '.' && $child != '..') { if (is_dir($dir . '/' . $child)) rmdirs($dir . '/' . $child); else unlink($dir . '/' . $child); } } $d->close(); rmdir($dir); } ?>
三个创建目录的函数都有自己的优点,这里我也没有一个个测试了,只使用了第二个感觉非常的不错。
永久链接:
转载随意!带上文章地址吧。