如何从目录中单击一次获取多个图像

时间:2018-05-07 12:30:51

标签: php image directory

这是我尝试过的,但它不起作用

<?php

  $handle = opendir(dirname(realpath(__FILE__)) . '/pics/');
  while ($file = readdir($handle)) {
      if ($file !== '.' && $file !== '..') {
          echo '<img src="pics/' . $file . '" border="0" class="custom-gallery img-responsive" style="height:150px;"/>';
      }
  }
?>

1 个答案:

答案 0 :(得分:0)

这是遍历目录的正确方法。

while (false !== ($entry = readdir($handle))) {
    echo "$entry\n";
}

也请检查图像的文件路径