Lines Matching refs:mktime
2 Test mktime() function: error conditions
8 echo "*** Testing mktime() : error conditions ***\n";
10 echo "\n-- Testing mktime() function with Zero arguments --\n";
12 var_dump( mktime() );
17 echo "\n-- Testing mktime() function with more than expected no. of arguments --\n";
26 var_dump( mktime($hour, $minute, $sec, $month, $day, $year, $extra_arg) );
33 *** Testing mktime() : error conditions ***
35 -- Testing mktime() function with Zero arguments --
36 ArgumentCountError: mktime() expects at least 1 argument, 0 given
38 -- Testing mktime() function with more than expected no. of arguments --
39 ArgumentCountError: mktime() expects at most 6 arguments, 7 given