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.
 
 
 
 
 
 

20 lines
333 B

--TEST--
Test wrong number of arguments for time()
--FILE--
<?php
/*
* proto int time(void)
* Function is implemented in ext/date/php_date.c
*/
// Extra arguments are ignored
$extra_arg = 1;
echo "\n-- Too many arguments --\n";
var_dump (time($extra_arg));
?>
===DONE===
--EXPECTF--
-- Too many arguments --
int(%d)
===DONE===