php – 如何获取文件夹下的文件名?
发布时间:2020-12-13 18:13:40 所属栏目: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 s
假设我的目录看起来像:
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; } } ?> (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |