You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
332 B

  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 "\n-- Too many arguments --\n";
  12. var_dump (time($extra_arg));
  13. ?>
  14. ===DONE===
  15. --EXPECTF--
  16. -- Too many arguments --
  17. int(%d)
  18. ===DONE===