Lines Matching refs:idate
2 Test idate() function : error conditions
5 /* Prototype : int idate(string format [, int timestamp])
11 echo "*** Testing idate() : error conditions ***\n";
13 echo "\n-- Testing idate() function with Zero arguments --\n";
14 var_dump( idate() );
16 echo "\n-- Testing idate() function with more than expected no. of arguments --\n";
20 var_dump( idate($format, $timestamp, $extra_arg) );
25 *** Testing idate() : error conditions ***
27 -- Testing idate() function with Zero arguments --
29 Warning: idate() expects at least 1 parameter, 0 given in %s on line %d
32 -- Testing idate() function with more than expected no. of arguments --
34 Warning: idate() expects at most 2 parameters, 3 given in %s on line %d