PHP - 遍历目录并获取所有文件(图像)的代码
我想编写一个页面,它将遍历指定的目录...并获取该目录中的所有文件...
在我的情况下,该目录将仅包含图像并显示图像及其链接...
类似这样
< img src="https://i.sstatic.net/ceiFy.png" alt="Example">
如何操作
ps 该目录不会是用户输入的..它将是同一目录总是...
i want to write a page that will traverse a specified directory.... and get all the files in that directory...
in my case the directory will only contain images and display the images with their links...
something like this
How to Do it
p.s. the directory will not be user input.. it will be same directory always...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
您还可以尝试 glob 函数:
You could also try the glob function:
我使用类似的东西:
I use something along the lines of:
您可以像其他人建议的那样检查目录中的每个文件,或者您可以使用 glob 根据扩展名识别文件。
You could as others have suggested check every file in the dir, or you could use glob to identify files based on extension.
您可以使用 DirectoryIterator
您好,如果您想递归地传递目录, :
http://php.net/manual/en/class.recursivedirectoryiterator.php
Hi you can use DirectoryIterator
If you want to pass directories recursively:
http://php.net/manual/en/class.recursivedirectoryiterator.php
您需要使用 scandir 函数来遍历列表目录中的文件。
You'll want to use the scandir function to walk the list of files in the directory.
来源:phpacademy.org
source: phpacademy.org
使用 readdir
use readdir