1
0
mirror of https://github.com/php/php-src.git synced 2026-04-19 05:51:02 +02:00
Files
archived-php-src/ext/standard/tests/general_functions/bug46587.phpt
Gustavo André dos Santos Lopes 1d5eff07f3 - Fixed bug #53403 (use of unitialized values). Fixes the fix for bug #46587.
- Added test for bug #46587.
2010-11-25 16:44:20 +00:00

17 lines
267 B
PHP

--TEST--
Bug #46587 (mt_rand() does not check that max is greater than min).
--FILE--
<?php
var_dump(mt_rand(3,8));
var_dump(mt_rand(8,3));
echo "Done.\n";
?>
--EXPECTF--
int(%d)
Warning: mt_rand(): max(3) is smaller than min(8) in %s on line %d
bool(false)
Done.