mirror of
https://github.com/php/php-src.git
synced 2026-03-27 17:52:16 +01:00
22 lines
403 B
PHP
22 lines
403 B
PHP
--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 "\nToo many arguments\n";
|
|
var_dump (time($extra_arg));
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
Too many arguments
|
|
|
|
Warning: time() expects exactly 0 parameters, 1 given in %stime_error.php on line %d
|
|
NULL
|
|
===DONE===
|