vote up 1 vote down star

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?

flag

throw a dice. Sorry, I couldn't resist ... xkcd.com/221 – MAD9 Oct 29 at 13:50

6 Answers

vote up 14 vote down check

You can also do just:

$k = array_rand($array);
$v = $array[$k];

This is the way to do it when you have an associative array.

link|flag
+1. Only thought of this function after posting my answer, came back to edit, but found that you'd already answered. – Duroth Oct 29 at 12:47
vote up 1 vote down

You can use mt_rand()

$random = $ran[mt_rand(0, count($ran) - 1)];

This comes in handy as a function as well if you need the value

function random_value($array)
{
    return $ran[mt_rand(0, count($ran) - 1)];
}
link|flag
2  
Should be mt_rand(0, 3) as there are only 4 items. More correctly though: $array[mt_rand(0, count($array)] – reko_t Oct 29 at 12:43
ya my bad, fixed. – Ólafur Waage Oct 29 at 12:43
Err, I think you meant mt_rand(0, count($ran) - 1) – Josh Davis Oct 29 at 12:50
Yes I did, good catch. :P – reko_t Oct 29 at 12:51
Fixed the fix of the fix :D – Ólafur Waage Oct 29 at 12:55
vote up 0 vote down
$rand = rand(1,4);

or, for arrays specifically:

$array = array('a value', 'another value', 'just some value', 'not some value');
$rand = $array[ rand(0, count($array)-1) ];
link|flag
1  
You would never get the first item in this list and you would go outside the array with 4 – Ólafur Waage Oct 29 at 12:44
The first $rand is about values. The original array has values ranging from 1 to 4. The second $rand is about array keys, 0 to 3. – Josh Davis Oct 29 at 12:52
vote up 0 vote down

You get a random number out of an array as follows:

$randomValue = array_rand($rand,1);
link|flag
array_rand() returns a random key, not a random value. – reko_t Oct 29 at 12:45
vote up 3 vote down

PHP provides a function just for that: array_rand()
http://php.net/manual/en/function.array-rand.php

$ran = array(1,2,3,4);
$randomElement = array_rand($ran, 1);
link|flag
vote up -2 vote down

Here is a ready to use function :)

function get_random_value($array) {
  return $array[rand(0, count($array) - 1];
}

Example :

$ran = array(1,2,3,4);
$randomElement = get_random_value($ran);
link|flag
someone could explain the downvotes ? – manitra Oct 29 at 13:36
Might be because you're reinventing the wheel, but it does seem like someone is out to get you. – Yuriy Faktorovich Oct 29 at 15:50
:p ough, it hurts. – manitra Nov 3 at 9:37

Your Answer

Get an OpenID
or

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