Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to get a random number that is between

0 - 80

and

120 - 200

I can do

$n1 = rand(0, 80);
$n2 = rand(120, 200);

But then I need to choose between n1 and n2. Cannot do

 $n3 = rand($n1, $n2)

as this may give me a number between 80 - 120 which I need to avoid.

How to solve this?

share|improve this question
In the beginning of your question, you specify the range of 1-80, but the code reflects a range of 0-80. Which did you mean? – Sonic42 Apr 22 '12 at 22:04
sorry -- fixed it – torr Apr 22 '12 at 22:05

3 Answers

up vote 8 down vote accepted

Since both ranges have different sizes (even if only by 1 number), to ensure good random spread, you need to do this:

$random = rand( 0, 200 - 39 );
if ($random>=120-39) $random+=39;

Fastest method. :)

The way this works is by pretending it's a single range, and if it ends up picking a number above the first range, we increase it to fit within the second range. This ensures perfect spread.

share|improve this answer
He fixed the question, both have the same range of 81 (0-80 and 120-200) – Ozzy Apr 22 '12 at 22:07
Ah, easy enough to fix. :) – DanRedux Apr 22 '12 at 22:07
Agreed 2 calls to random is slower than one, but your implementation makes it much harder for a second programmer to follow the code and the benefit is probably only like 50-100ms? Which doesn't outweigh the cost for me :P – Ozzy Apr 22 '12 at 22:15
thx dan -- works nicely – torr Apr 22 '12 at 22:17
Np. There are other ways to do it, of course, but this one guarantee's good spread no matter the 2 ranges. :) – DanRedux Apr 22 '12 at 22:18

Since both ranges have the same size you can simply use rand(0, 1) to determine which range to use.

$n = rand(0, 1) ? rand(0, 80) : rand(120, 200);
share|improve this answer
Good solution! Perfectly correct. – Chris Apr 22 '12 at 22:01
Not correct. It will pick 0 sometimes. :) – DanRedux Apr 22 '12 at 22:03
@ThiefMaster and what you mean by since both ranges have the same size is that the odds of a number in any of those two ranges being chosen is the same because its 50% / range-size right? – Ozzy Apr 22 '12 at 22:05
Not correct. It will not be uniformly random as a number on a shorter interval will more likely to be accepted. While it may be correct here because span is 80 in both, this is not true in general. – Tibor Apr 22 '12 at 22:05
1  
This answer isn't future proof because it would have to be re-implemented if at some point the ranges are (or could be, as in user specified) different sizes. – Sonic42 Apr 22 '12 at 22:15
show 6 more comments

PHP has a new function for this as well called range. Very easy to use, and can be located in the PHP Manual.

It allows you to input a minimum/maximum number to grab a range from.

<?php
echo range(0, 1000);
?

Technically though, you could also enter your own two numbers to serve as the number range.

share|improve this answer

Your Answer

 
discard

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

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