gpt4 book ai didi

php - 目录中每个文件的循环代码

转载 作者:IT老高 更新时间:2023-10-28 11:51:46 31 4
gpt4 key购买 nike

我有一个图片目录,我想循环并对其进行一些文件计算。可能只是 sleep 不足,但我将如何使用 PHP 在给定目录中查找,并使用某种 for 循环遍历每个文件?

谢谢!

最佳答案

scandir :

$files = scandir('folder/');
foreach($files as $file) {
//do your work here
}

glob可能会更好地满足您的需求:

$files = glob('folder/*.{jpg,png,gif}', GLOB_BRACE);
foreach($files as $file) {
//do your work here
}

关于php - 目录中每个文件的循环代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6155533/

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