如何仅列出目录递归列表中选定的级别?
我使用此代码: PHP 按类型对目录中的文件进行排序
但它会打开所有目录。我只希望打开指向所选项目的目录。
I use this code: PHP Sort Files In Directory by Type
But it opens up all directories. I just want directories that leads to the selected item to be open.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确,您不想递归地显示目标下的目录。我认为您可以从上面的代码中删除递归调用,如下所示:
If im understanding you correctly, you don't want to recursively display the directories under the target. I think you would remove the recursive call from the code above like this :