Lines Matching refs:mktime
2 Test mktime() function : error conditions
5 /* Prototype : int mktime ([ int $hour= date("H") [, int $minute= date("i") [, int $second= dat…
15 echo "*** Testing mktime() : error conditions ***\n";
17 echo "\n-- Testing mktime() function with Zero arguments --\n";
18 var_dump( mktime() );
20 echo "\n-- Testing mktime() function with more than expected no. of arguments --\n";
29 var_dump( mktime($hour, $minute, $sec, $month, $day, $year, $is_dst, $extra_arg) );
34 *** Testing mktime() : error conditions ***
36 -- Testing mktime() function with Zero arguments --
38 Strict Standards: mktime(): You should be using the time() function instead in %s on line %d
41 -- Testing mktime() function with more than expected no. of arguments --
43 Warning: mktime() expects at most 7 parameters, 8 given in %s on line %d