如何从文件夹中获取图像?

时间:2012-05-27 13:39:24

标签: php html sql

我有一个名为images的文件夹。我只想从文件夹中获取这些图像并在网页上随机显示。当用户刷新页面时,图像应该更改。 谢谢。

2 个答案:

答案 0 :(得分:2)

一个想法可能是:

  1. 您从图像文件夹中获取所有图像名称
  2. 你随机选择一个
  3. 你想象那个
  4. 所以你可以这样做

    <?
        $dir = '/my_directory_location'; 
        $files = scandir($dir);  
        $rand_img = array_rand($files, 2);
        $imcolumn = "<img src=$rand_img alt=$rand_img><br>";
    ?>
    
    <?= $imcolumn ?>
    

答案 1 :(得分:0)

<?php

  $folder = "templates/images/";

  $search = glob($folder."/*");
  shuffle($search);

  foreach ($search as $image) {
    print "<img src='".$image."'><Br>";
  }

?>