Random image display - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T15:13:04Z http://stackoverflow.com/feeds/question/1080787 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1080787/random-image-display 0 Random image display Ben Shelock 2009-07-03T20:52:43Z 2009-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#1080798 5 Answer by zombat for Random image display zombat 2009-07-03T20:55:10Z 2009-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#1080816 4 Answer by elviejo for Random image display elviejo 2009-07-03T21:01:18Z 2009-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>