rand_error.phpt 446 B

123456789101112131415161718
  1. --TEST--
  2. Test rand() - wrong params test rand()
  3. --FILE--
  4. <?php
  5. rand(25);
  6. rand(10,100,false);
  7. rand("one", 100);
  8. rand(1, "hundered");
  9. ?>
  10. --EXPECTF--
  11. Warning: rand() expects exactly 2 parameters, 1 given in %s on line 2
  12. Warning: rand() expects exactly 2 parameters, 3 given in %s on line 3
  13. Warning: rand() expects parameter 1 to be long, string given in %s on line 4
  14. Warning: rand() expects parameter 2 to be long, string given in %s on line 5