PHP 在非常大的目录中列出文件的最有效方法

发布于 2024-10-28 10:09:29 字数 358 浏览 1 评论 0原文

可能的重复:
获取目录内的文件
PHP:scandir()太慢

我有一个包含数万个文件的目录在其中,我想在页面上显示这些文件的列表。我尝试用 scandir 来做这件事,但它需要很长时间。实现这一目标的有效方法是什么?

Possible Duplicates:
Get the Files inside a directory
PHP: scandir() is too slow

I have a directory with tens of thousands of files in it and I want to display a list of these files on a page. I tried doing it with scandir and it takes forever. What would be an efficient method of achieving this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

甜妞爱困 2024-11-04 10:09:29

我还没有对它们进行基准测试,但您的其他选项是

glob() - http://php .net/manual/en/function.glob.php

opendir() - http://www.php.net/manual/en/function.opendir.php

I haven't benchmarked them, but your other options are

glob() - http://php.net/manual/en/function.glob.php

opendir() - http://www.php.net/manual/en/function.opendir.php

末蓝 2024-11-04 10:09:29
$directory=opendir($_SERVER['DOCUMENT_ROOT'].'/directory/');
  while ($file = readdir($directory)) {
    if($file!="." && $file!=".."){
      echo $file."<br>";
    }
  }
closedir($directory);
$directory=opendir($_SERVER['DOCUMENT_ROOT'].'/directory/');
  while ($file = readdir($directory)) {
    if($file!="." && $file!=".."){
      echo $file."<br>";
    }
  }
closedir($directory);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文