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.

We all know the basic

$i = 1;

while ($i<100){
    echo $i;
    $i++
}

Question: How do I increment $i by a random number between 1 and 5 each time it loops?

share|improve this question
if is not a looping statement. :| – hjpotter92 Apr 12 '12 at 21:17

3 Answers

up vote 9 down vote accepted

Exactly like you described it in words: By increment it with a random number between 1 and 5.

while ($i < 1000) {
  echo $i;
  $i += rand(1,5);
}

rand()

share|improve this answer

In one line:

for ($i = 1; $i < 1000; $i += rand(1, 5)) echo $i;
share|improve this answer
Must say: Looks slightly cooler than my solution :) – KingCrunch Apr 12 '12 at 21:19
Semantically and operationally identical though, I have +1ed yours as well – DaveRandom Apr 12 '12 at 21:20

mt_rand is faster and uses uses the Mersenne Twister algorythm (1997)

while ($i < 1000) {
  echo $i;
  $i += mt_rand(1,5);
}
share|improve this answer
As far as I can see this is not true – KingCrunch Apr 13 '12 at 5:53
lest see your benchmark @KingCrunch – Baba Apr 13 '12 at 18:17
google.de/search?q=rand+vs+mt_rand Lets see your benchmark – KingCrunch Apr 13 '12 at 18:39

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.