从php的文件夹中获取所有图像

2022-08-30 10:55:33

我正在使用WordPress。我有一个像 这样的图像文件夹。mytheme/images/myimages

我想从文件夹中检索所有图像名称myimages

请告诉我,我怎么能得到图像名称。


答案 1

试试这个

$directory = "mytheme/images/myimages";
$images = glob($directory . "/*.jpg");

foreach($images as $image)
{
  echo $image;
}

答案 2

你可以简单地用PHP功能做到这一点。opendir

例:

$handle = opendir(dirname(realpath(__FILE__)).'/pictures/');
while($file = readdir($handle)){
  if($file !== '.' && $file !== '..'){
    echo '<img src="pictures/'.$file.'" border="0" />';
  }
}

推荐