随机化你的横幅广告

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机化你的横幅广告相关的知识,希望对你有一定的参考价值。

You have banners on your page for advertising? Then you have to randomize the order to be fair.
  1. <?$arr = array(
  2. 0 => "<p>Fill with your html for the first banner</p>",
  3. 1 => "<p>Fill with your html for the 2nd banner</p>",
  4. 2 => "<p>Fill with your html for the 3rd banner</p>"
  5. );
  6.  
  7. // Don´t touch
  8. // Print insertet banner-HTML
  9. shuffle($arr);
  10. foreach($arr as $banner => $value)
  11. {
  12. print $value;
  13. }
  14.  
  15. // Thats it!

以上是关于随机化你的横幅广告的主要内容,如果未能解决你的问题,请参考以下文章