php – 如何获取文件夹下的文件名?

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – 如何获取文件夹下的文件名?脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我的目录看起来像:
abc
|_ a1.txt
|_ a2.txt
|_ a3.txt
|_ a4.txt
|_ a5.txt

如何使用PHP将这些文件名转换为数组,仅限于特定的文件扩展名并忽略目录?

您可以使用 glob()功能

例01:

<?PHP
  // read all files inside the given directory
  // limITed to a sPEcific file extension
  $files = glob("./ABC/*.txt");
?>

例02:

<?PHP
  // perform actions for each file found
  foreach (glob("./ABC/*.txt") as $filename) {
    echo "$filename size " . filesize($filename) . "\n";
  }
?>

例03:使用RecursiveIteratorIterator

<?PHP 
foreach(new RecursiveiteratorIterator( new Recursivedirectoryiterator("../")) as $file) {
  if (strtolower(substr($file,-4)) == ".txt") {
        echo $file;
  }
}
?>

脚本宝典总结

以上是脚本宝典为你收集整理的php – 如何获取文件夹下的文件名?全部内容,希望文章能够帮你解决php – 如何获取文件夹下的文件名?所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。