php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #8293 rand function failure
Submitted: 2000-12-16 10:20 UTC Modified: 2000-12-18 06:00 UTC
From: edasx at worldoffreegames dot com Assigned:
Status: Closed Package: Unknown/Other Function
PHP Version: 4.0.3pl1 OS: Win32 - Win98SE
Private report: No CVE-ID: None
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
29 + 38 = ?
Subscribe to this entry?

 
 [2000-12-16 10:20 UTC] edasx at worldoffreegames dot com
srand((double)microtime()*1000000);
$rndnum = rand(1, 100000);

this fails, with invalid range error.

the range of
$rndnum = rand(1, 32530);
does not fail and around 34000 fails, so there's probably incorrect type (integer) that's too small.





Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-12-18 06:00 UTC] hholzgra@php.net
the maximum range for rand() is platform-dependant,
use getrandmax() to see what it is for your system

or use mt_rand() if you want to have platform independant
randomness
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Fri May 09 11:01:28 2025 UTC