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

I'm generating an array of random numbers, between 0 and 2 with this code:

    for ($j = 0; $j < 60; $j++) {
       for ($i = 0; $i < 100; $i++) {
                $value = rand(0,2);
                $DBH->query("INSERT INTO map (x, y, value) VALUES($i, $j, $value);");
    }

And i found and oddity, as you may see here, the rows are random, but they repeat:

22121000210211220022122200120200122000122121
22121000210211220022122200120200122000122121
22121000210211220022122200120200122000122121
22121000210211220022122200120200122000122121
22121000210211220022122200120200122000122121

How can avoid that?

share|improve this question

1 Answer

up vote 3 down vote accepted

You might want to explicitly seed your generator using srand, e.g. srand(time()) (note that the srand link has a better example of seeding than just using time, depends on how random you need, I suppose).

Failing that

  • You could try using mt_rand with mt_srand
  • You could always use MySQL's rand function to generate the numbers as a workaround.
share|improve this answer
2  
Just saw this interesting comparison on mt_rand: portfolio.technoized.com/notes/26 – Jere Dec 6 '10 at 3:00

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.