time_error.phpt 401 B

123456789101112131415161718192021
  1. --TEST--
  2. Test wrong number of arguments for time()
  3. --FILE--
  4. <?php
  5. /*
  6. * proto int time(void)
  7. * Function is implemented in ext/date/php_date.c
  8. */
  9. // Extra arguments are ignored
  10. $extra_arg = 1;
  11. echo "\nToo many arguments\n";
  12. var_dump (time($extra_arg));
  13. ?>
  14. ===DONE===
  15. --EXPECTF--
  16. Too many arguments
  17. Warning: time() expects exactly 0 parameters, 1 given in %stime_error.php on line %d
  18. NULL
  19. ===DONE===