I have a an array called $ran = array(1,2,3,4);
I need to get a random value out of this array and store it in a variable, how can I do this?
|
|
|||
|
|
|
You can also do just:
This is the way to do it when you have an associative array. |
||
|
|
|
You can use mt_rand()
This comes in handy as a function as well if you need the value
|
||||||||||||
|
|
|
or, for arrays specifically:
|
||||||
|
|
|
You get a random number out of an array as follows:
|
||
|
|
|
PHP provides a function just for that: array_rand()
|
||
|
|
|
|
Here is a ready to use function :)
Example :
|
||||||
|