Lines Matching refs:getdate
2 Test getdate() function : usage variation - Passing high positive and negative float values to time…
7 /* Prototype : array getdate([int timestamp])
13 echo "*** Testing getdate() : usage variation ***\n";
16 echo "\n-- Testing getdate() function by passing float 12.3456789000e10 value to timestamp --\n";
18 var_dump( getdate($timestamp) );
20 echo "\n-- Testing getdate() function by passing float -12.3456789000e10 value to timestamp --\n";
22 var_dump( getdate($timestamp) );
26 *** Testing getdate() : usage variation ***
28 -- Testing getdate() function by passing float 12.3456789000e10 value to timestamp --
30 Warning: getdate() expects parameter 1 to be integer, float given in %s on line %d
33 -- Testing getdate() function by passing float -12.3456789000e10 value to timestamp --
35 Warning: getdate() expects parameter 1 to be integer, float given in %s on line %d