5

我必须在网页中显示一些横幅。横幅的数量为 10 个(最多 10 个)。我可以在数据库中设置横幅的数量和每个横幅文件夹。横幅图像根据类别存储在单独的服务器文件夹中。横幅显示在列中。

我的代码是,这里,long1,long2,...long10 是数据库中的目录名

 $array=array();
       for($n=1;$n<=$long;$n++)
       {
       $files = array();
       $dir=${'long'.$n};

               if(is_dir($dir))
              {
               $openDir = opendir($dir);
                       while (false !== ($file = readdir($openDir)))
                       {
                               if ($file != "." && $file != "..")
                               {
                                       $files[] = $file;
                               }
                       }
               closedir($openDir);
               }


mt_srand((double) microtime()*1000000);
 $randnum = mt_rand(0,(sizeof($files)-1));

 $arraycount=count($array);
for($index=0;$index<=$arraycount;$index++)
 {
 if(!in_array($array,$randnum))
     {
      $array[]=$randnum;
     }

 }

 $img = $dir."/".$files[$randnum];

  <input type="image" class="advt_image" src="<?=$img;?>" alt="" name=""/>
 }

例如:如果数据库中设置了 7 个横幅,我必须显示来自不同或同一个文件夹的 7 个横幅。(一些横幅将来自同一个文件夹)。每次显示网页时,我都需要避免重复的横幅。

我已经分配了一个数组来存储每个随机数。我需要更改代码中的任何内容吗?有什么想法/想法吗?

谢谢!

4

3 回答 3

1
  1. 将您的横幅 ID 放在一个数组中。每个都会发生一次
  2. 使用Knuth shuffle 随机播放此数组
  3. 在 HTML 输出中发出前 10 个
于 2012-06-28T07:05:29.733 回答
1

您可以从循环中的 $files 数组中删除显示的图像。这意味着您还必须检查循环中数组的长度。你可以用array_diff这个。

$files = array(...); // this holds the files in the directory
$banners = array();  // this will hold the files to display
$count = 7;
for($i=0;$i<$count;$i++) {
    $c = mt_rand(0,count($files));
    $banners[] = $files[$c];
    $files = array_diff($files, array($files[$c]));
}

// now go ahead and display the $banners
于 2012-06-28T08:04:56.057 回答
0

解决此问题的一种简单方法是创建一个数组来保存横幅列表,而不是在显示它们之前。

我没有阅读您的代码(抱歉),但这是一个基本概念,这是可能的。

$bannerList = array();

//Now, check if the list contains the banner before adding it
while($rows) { //your big list of banners

    if(!in_array($rows['bannerpath'])) {
        $bannerList[] = $rows['bannerpath'];
    }

}
于 2012-06-28T07:08:05.910 回答