mirror of
https://github.com/php/php-src.git
synced 2026-04-20 14:31:06 +02:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
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)
|