I need to be able to pull a random value out of my array, let's assume i have array with 100 values, how can i pull randomly 5 values out of this array?
|
|
|||
|
|
|
Try this:
|
||
|
|
|
|
actually I just found array_rand(); maybe that? |
||
|
|
|
|
You are correct. according to http://us3.php.net/manual/en/function.array-rand.php you can do:
|
||
|
|
|
|
with array_rand(), produced array will always be ordered $results[0] < $results[1] < $results[2] < $results[3] < $results[4] if you want it to be unordered, after array_rand(), you can use shuffle() function
|
|||
|
|
