i need to print out numbers 1-100 in a random order. the print statement should be:
echo 'h{'.$num.'}';
what is the shortest code to do this?
|
|
i need to print out numbers 1-100 in a random order. the print statement should be: echo 'h{'.$num.'}'; what is the shortest code to do this? |
||||
|
|
|
The easiest way is to use shuffle with an array containing the 100 numbers e.g.
Also see the range function EDIT I thought I might add a little on what shuffle does. Although php.net doesn't explicitly say so, it is likely based on the modern version of the Fisher-Yates shuffle algorithm. For a video demonstration of how it works, see http://www.youtube.com/watch?v=Ckh2DJrP7F4. Also see this excellent flash demonstration The shuffle algorithm essentially works like this:
Hope that helps. |
|||
|
|
See the example for
|
||||||||||||||
|