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.

Whats the best way to do a random "for" without repeating any number?

for ($i = 1; $i <= 10; $i++) {
    echo $i;
}

I think some ways but are so complicated with a lot amount of code.. There is a standard function to do what im willing?

share|improve this question

3 Answers

up vote 4 down vote accepted
$numbers = range(1,10);
shuffle($numbers);
foreach($numbers as $i) {
    // do stuff
}

That will give you the numbers 1 to 10 with no repetition in a random order.

share|improve this answer
$range = range(1,10);
shuffle($range);
foreach ($range as $i) {
    echo $i;
}
share|improve this answer

Create an array with a range of numbers and then shuffle:

$array = range(1, 10);
shuffle($array);
for ($i=0,$c=count($array); $i<$c; $i++) {
    echo $array[$i] . "\n";
}
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.