ID: 16926
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Feedback
Bug Type: *Math Functions
Operating System: WinXP
PHP Version: 4.2.0
New Comment:
I could not reproduce this, are you sure the browser is not caching
your page?
Derick
Previous Comments:
------------------------------------------------------------------------
[2002-04-30 08:14:09] [EMAIL PROTECTED]
As of PHP 4.2.0, shuffle() doesn't seem to work for me.
The following code always produce the same output:
function make_seed() { // Taken directly from the manual
list($usec, $sec) = explode(' ', microtime());
return (float) $sec + ((float) $usec * 100000);
}
srand(make_seed());
$arr = range(1, 10);
shuffle($arr);
print_r($arr);
Further testing shows that I get the same output if I uncomment the
srand(), if that's any help.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=16926&edit=1