ID:               26949
 Updated by:       [EMAIL PROTECTED]
 Reported By:      alucard at vitriolic dot org
-Status:           Open
+Status:           Feedback
-Bug Type:         *Math Functions
+Bug Type:         Math related
 Operating System: Solaris 9
 PHP Version:      4.3.4
 New Comment:

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip




Previous Comments:
------------------------------------------------------------------------

[2004-01-17 17:34:41] alucard at vitriolic dot org

Description:
------------
Bug #24909 is still an issue with latest build and Solaris 9.

When rand() is called with no arguments, it operates as expected.  When
rand(min,max) is called, it always returns value 'min'.

This problem only occurs when ZTS is enabled.  When it's not, both
calls to rand() work as expected, though the value ranges are
completely different.

To demonstrate:

# uname -a
SunOS XXXXXX 5.9 Generic_112233-08 sun4u sparc SUNW,Ultra-Enterprise

# rm config.cache
# ./configure --disable-all --disable-cgi --enable-experimental-zts
# make clean && make
# sapi/cli/php -r 'echo rand(),"\n"; echo rand(0,100),"\n";'
28909
0
# sapi/cli/php -r 'echo rand(),"\n"; echo rand(0,100),"\n";'
21885
0

# rm config.cache
# ./configure --disable-all --disable-cgi
# make clean && make
# sapi/cli/php -r 'echo rand(),"\n"; echo rand(0,100),"\n";'
1116498057
87
# sapi/cli/php -r 'echo rand(),"\n"; echo rand(0,100),"\n";'
102735333
95

Note that with zts enabled, the rand() values are much smaller, and
rand(min,max) always returns min.  Without it, rand values are much
larger, and rand(min,max) operates as expected.





------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=26949&edit=1

Reply via email to