mirror of
https://github.com/php/php-src.git
synced 2026-04-29 11:13:36 +02:00
4d8dd8d258
https://wiki.php.net/rfc/rng_extension https://wiki.php.net/rfc/random_extension_improvement
11 lines
189 B
PHP
11 lines
189 B
PHP
--TEST--
|
|
Bug #75514 mt_rand returns value outside [$min,$max]
|
|
--FILE--
|
|
<?php
|
|
mt_srand(0, MT_RAND_PHP);
|
|
var_dump(mt_rand(0,999999999), mt_rand(0,999));
|
|
?>
|
|
--EXPECT--
|
|
int(448865905)
|
|
int(592)
|