php 获取文件夹内的所有图片,直接遍历
//获取文件夹下的所有文件
$dir_str = 'images';
$imgType = array('gif','png','jpg','jpeg','bmp');
$handle = opendir("./" . $dir_str); //指定目录
while (false!== ($file = readdir($handle))) { //遍历改文件所在的目录
list($filename , $kzm) = explode('.', $file); //获取扩展名
if ( in_array($kzm, $imgType) ) {
if (!is_dir('./'. $file)) {
$fileList [] = $file;
}
}
}
注:https://jingyan.baidu.com/article/59a015e36f2b50f7948865cf.html