当前位置:Gxlcms > PHP教程 > 怎么读取一个文件夹下的图片呢?

怎么读取一个文件夹下的图片呢?

时间:2021-07-01 10:21:17 帮助过:68人阅读

这样可以显示出一张图片 但是我想把img文件夹下所有的图片都显示出来应该怎么呢?我改成这样不行$url = 'upload/'; 那么应该怎么办呢?

header("Content-Type: image/jpeg;text/html; charset=utf-8");
$url='1.jpg';
$img = file_get_contents($url,true);
echo $img;

回复内容:

这样可以显示出一张图片 但是我想把img文件夹下所有的图片都显示出来应该怎么呢?我改成这样不行$url = 'upload/'; 那么应该怎么办呢?

header("Content-Type: image/jpeg;text/html; charset=utf-8");
$url='1.jpg';
$img = file_get_contents($url,true);
echo $img;

方法很多,事例如下

$dir = "upload/";  //要获取的目录
if (is_dir($dir)){
    if ($dh = opendir($dir)){
        while (($file = readdir($dh))!= false){
            $filePath = $dir.$file;
            echo "";
        }
        closedir($dh);
    }
}

人气教程排行