Random image display - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T15:13:04Zhttp://stackoverflow.com/feeds/question/1080787http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080787/random-image-display0Random image displayBen Shelock2009-07-03T20:52:43Z2009-07-03T21:01:18Z
<p>I have a list of images that need to be displayed. However theres only space for 5. I need to display 5 of these at a time randomly.</p>
<p>Whats the best way to do this?</p>
http://stackoverflow.com/questions/1080787/random-image-display/1080798#10807985Answer by zombat for Random image displayzombat2009-07-03T20:55:10Z2009-07-03T20:55:10Z<p>If you have the list of images in an array, you could use <a href="http://www.php.net/shuffle" rel="nofollow">shuffle()</a>.</p>
http://stackoverflow.com/questions/1080787/random-image-display/1080816#10808164Answer by elviejo for Random image displayelviejo2009-07-03T21:01:18Z2009-07-03T21:01:18Z<p>There are plenty of ways to achive this.</p>
<p>One example lets say you have all the image names in an array then you could:</p>
<pre><code>$images = array('imgAbc.jpg', 'img123.jpg'.... 'imgXYZ.gif');
//randomize the array
shuffle($images);
//then just get the 5 elements you want:
array_slice($images, 4);
</code></pre>
<p>Other way could be if your images have numbers you could just generate 5 random numbers, etc. etc.</p>
<p>As I said there are several ways to do it.</p>