vote up 0 vote down star

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.

Whats the best way to do this?

flag

74% accept rate

2 Answers

vote up 5 vote down check

If you have the list of images in an array, you could use shuffle().

link|flag
Doh! Thank you :p – Ben Shelock Jul 3 at 20:58
vote up 4 vote down

There are plenty of ways to achive this.

One example lets say you have all the image names in an array then you could:

$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);

Other way could be if your images have numbers you could just generate 5 random numbers, etc. etc.

As I said there are several ways to do it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.