gpt4 book ai didi

php - 如何使用 PHP 从文件夹中读取文件列表?

转载 作者:IT王子 更新时间:2023-10-29 00:56:27 25 4
gpt4 key购买 nike

我想使用 php 读取网页中文件夹中的文件名列表。有什么简单的脚本可以实现吗?

最佳答案

最简单最有趣的方式(imo)是glob

foreach (glob("*.*") as $filename) {
echo $filename."<br />";
}

但标准方法是使用 directory functions.

if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
echo "filename: .".$file."<br />";
}
closedir($dh);
}
}

还有SPL DirectoryIterator methods .如果你有兴趣

关于php - 如何使用 PHP 从文件夹中读取文件列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/720751/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com