srand_basic.phpt 703 B

12345678910111213141516171819202122232425262728293031323334
  1. --TEST--
  2. Test srand() - basic function test for srand()
  3. --FILE--
  4. <?php
  5. /* Prototype : void srand ([ int $seed ] )
  6. * Description: Seed the random number generator.
  7. * Source code: ext/standard/rand.c
  8. */
  9. echo "*** Testing srand() : basic functionality ***\n";
  10. // Should return NULL if given anything that it can convert to long
  11. // This doesn't actually test what it does with the input :-\
  12. var_dump(srand());
  13. var_dump(srand(500));
  14. var_dump(srand(500.1));
  15. var_dump(srand("500"));
  16. var_dump(srand("500E3"));
  17. var_dump(srand(true));
  18. var_dump(srand(false));
  19. var_dump(srand(NULL));
  20. ?>
  21. ===Done===
  22. --EXPECTF--
  23. *** Testing srand() : basic functionality ***
  24. NULL
  25. NULL
  26. NULL
  27. NULL
  28. NULL
  29. NULL
  30. NULL
  31. NULL
  32. ===Done===