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…
14 echo "*** Testing mktime() : error conditions ***\n";
16 echo "\n-- Testing mktime() function with Zero arguments --\n";
17 var_dump( mktime() );
19 echo "\n-- Testing mktime() function with more than expected no. of arguments --\n";
27 var_dump( mktime($hour, $minute, $sec, $month, $day, $year, $extra_arg) );
32 *** Testing mktime() : error conditions ***
34 -- Testing mktime() function with Zero arguments --
36 Deprecated: mktime(): You should be using the time() function instead in %s on line %d
39 -- Testing mktime() function with more than expected no. of arguments --
41 Warning: mktime() expects at most 6 parameters, 7 given in %s on line %d