php 列表在目录和子目录等的数组文件中匹配模式。
我希望列出目录及其子目录中与模式匹配的所有文件,并将列表作为数组返回以供以后使用。我实际上也想传递一系列目录来执行此操作。
I'm looking to list all the files in a dir and its sub dirs that match a pattern and return the list as an array for later use. I would actually like to pass an array of dirs to do this too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有 glob,但可能这些模式没有足够的表达能力您的需求。它使用与 shell 使用的模式相同的模式,而不是正则表达式。
There's glob, but it might be that the patterns do not have enough expressive power for your needs. It uses the same patterns that are used by the shell, not regular expressions.