Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How would I set PHP to randomly chose between these two sets of variables to use:

$key = goop;
$john = heck yeah;

and this

$key = roop;
$john = reck reah;

Thanks ever so much! :)

share|improve this question

3 Answers

up vote 1 down vote accepted

I'd recommend using an array:

$selection = array(
    array('goop', 'heck yeah'),
    array('roop', 'reck reah')
);

shuffle($selection);

list($key, $john) = array_pop($selection);
share|improve this answer
What about the goop (first set) part? it's not included in the code you provided – user1935281 Jan 12 at 0:10
Sorry, misread- fixed. – Martin Jan 12 at 0:13
How would I accomplish what you did, but with three sets? – user1935281 Jan 12 at 0:15
Simply add another array into $selection. It'll support as many as you want to add in – Martin Jan 12 at 0:19
Very good! :) thx – user1935281 Jan 12 at 1:49
show 5 more comments

For example:

if ( rand(0,1) )
{
    $key = "goop";
    $john = "heck yeah";
}
else
{
    $key = "roop";
    $john = "reck reah";
}
share|improve this answer
But it appears that in this example the first set would get a much bigger chance, correct me if I'm wrong. – user1935281 Jan 12 at 0:05
By far the simplest solution, rand() is an int, so it should be even chance – Philip Whitehouse Jan 12 at 0:05
1  
The chances of either being triggered are as fair as rand() is random... – BenM Jan 12 at 0:06
1  
I'd use mt_rand() as it is faster and should be more random. – cryptic ツ Jan 12 at 0:15
1  
Mine will maintain the pairs ;) – Martin Jan 12 at 0:24
show 15 more comments

Store the values in an array, and then use rand() to generate the values:

$key_vals = array('goop', 'roop', 'toop');
$john_vals = array('heck yeah', 'reck reah', 'leck leah');

$key = $key_vals[rand(0, (count($key_vals) - 1))];
$john = $john_vals[rand(0, (count($john_vals) - 1))];

You can easily extend this by adding values to the respective arrays, and increasing the maximum random number (i.e. second argument in rand()).

share|improve this answer
+1 Good stuff. But I'll choose ribot's as the answer. Thanks! – user1935281 Jan 12 at 0:10
No problem - there's more than one way to skin a cat :) – BenM Jan 12 at 0:11
I hate that expression but - yes, I get your point. haha :) – user1935281 Jan 12 at 0:13
See my updated answer on how to extend this to include more values. – BenM Jan 12 at 0:17
How would I accomplish what you did, but with three sets? – user1935281 Jan 12 at 0:18
show 9 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.