Why is it this sometimes returns 2?
function pickServer(){
$varr = rand(1,4);
if($varr==2){
pickServer();
}
return $varr;
}
|
|
Because you're not stopping the function there. the fourth line should read:
|
|||||||
|
|
The answer to your question, as others have pointed out, is that your code falls through without returning. If But your approach to solving the problem could be better. Both recursion and looping are barmy for this problem. This is a mapping problem, not a randomness problem. (It resembles some common randomness coding interview problems which can be handled most easily in a rejection loop, but it really isn't a problem of that class.) You want one of three outcomes, not four. (1, 3, and 4.) That means you should be generating a range of three random numbers, not four. You could remap with an array or use an
I didn't notice it before, but balpha anticipated my answer. He remapped with an |
|||||||||||||||
|
|
Another way to do it is using
|
|||||||||||||||||||
|
|
What you probably want is
-- but note that there's no guarantee that this doesn't go into a too long recursion. Maybe you should rather do something like this:
|
|||||||||||||
|
|
Because when the value is 2 you don't return pickserver. And the function continues to return $varr. |
|||
|
|
|
|||
|
|
|
I would so something like this:
|
||||
|
It calls the function recursively to get another number that isn't 2, but does nothing with that result. Try changing pickServer() to return pickServer(). Better still, write the function iteratively so that it just loops until the value returned isn't 2. |
|||
|
|
|
You forgot to return the value...
|
|||
|
|
|
You can remove the recursion and remap a randomly selected 2. Simply decrease the range and map the beginning of the range (in this case 2) to 1.
|
|||
|
|