标签: php directory
我需要从spcific目录中获取所有文件夹名称,并使用php构建包含文件夹名称的菜单结构。 有没有一种简单的方法在PHP中写这个?
答案 0 :(得分:0)
您可以使用Native RecursiveDirectoryIterator或通过scandir编写自己的函数。我推荐使用RecursiveDirectoryIterator。
http://php.net/manual/de/class.recursivedirectoryiterator.php
http://php.net/manual/de/function.scandir.php