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

前端之家收集整理的这篇文章主要介绍了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;
  }
}
?>
原文链接:https://www.f2er.com/php/135029.html

猜你在找的PHP相关文章