bug46587.phpt 267 B

12345678910111213141516
  1. --TEST--
  2. Bug #46587 (mt_rand() does not check that max is greater than min).
  3. --FILE--
  4. <?php
  5. var_dump(mt_rand(3,8));
  6. var_dump(mt_rand(8,3));
  7. echo "Done.\n";
  8. ?>
  9. --EXPECTF--
  10. int(%d)
  11. Warning: mt_rand(): max(3) is smaller than min(8) in %s on line %d
  12. bool(false)
  13. Done.