使用 PHP 扫描当前文件夹
我有一个这样的文件夹结构:
/articles
.index.php
.second.php
.third.php
.fourth.php
如果我在 secondary.php 中编写代码,如何扫描当前文件夹(文章)?
谢谢
I have a folder structure like this:
/articles
.index.php
.second.php
.third.php
.fourth.php
If I'm writing my code in second.php, how can I scan the current folder(articles)?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
http://php.net/manual/en/function.glob.php
http://php.net/manual/en/function.glob.php
来自 PHP 手册:
From the PHP manual:
来自标准 PHP 库 (SPL)
From The Standard PHP Library (SPL)
这取决于你所说的“扫描”是什么意思,我假设你想做这样的事情:
It depends on what you mean by 'scan' I'm assuming you want to do something like this:
试试这个
try this
扫描当前文件夹
Scan current folder
列出文件夹内的所有图像
List all images inside a folder