如何使用 SPL 检索完整目录树?
如何使用 SPL
(可能使用 RecursiveDirectoryIterator
和 RecursiveIteratorIterator
)检索完整目录树?
How can I retrieve the full directory tree using SPL
, possibly using RecursiveDirectoryIterator
and RecursiveIteratorIterator
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,
RecursiveIteratorIterator
将使用LEAVES_ONLY
作为__construct
。这意味着它将仅返回文件。如果您想包含文件和目录(至少这是我认为的完整目录树),您必须这样做:然后您可以
foreach
覆盖它。如果你想返回目录树而不是输出它,你可以将它存储在一个数组中,例如你也可以通过执行以下操作来创建不带
foreach
的$fileObjects
数组:如果您只想返回目录,请在
$iterator
上foreach
,如下所示:By default, the
RecursiveIteratorIterator
will useLEAVES_ONLY
for the second argument to__construct
. This means it will return files only. If you want to include files and directories (at least that's what I'd consider a full directory tree), you'd have to do:and then you can
foreach
over it. If you want to return the directory tree instead of outputting it, you can store it in an array, e.g.You can also create the array of
$fileObjects
without theforeach
by doing:If you only want directories returned,
foreach
over the$iterator
like this:你可以只是,或者做你想做的一切
You can just, or do everythng that you want