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
View Add Comment Developer Edit
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:
14 - 8 = ?
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

Add a Patch

Pull Requests

Add a Pull Request

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-2024 The PHP Group
All rights reserved.
Last updated: Sun Apr 28 06:01:30 2024 UTC