欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-23 20:37:46
...
这样可以显示出一张图片 但是我想把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);
    }
}
相关标签: php