Lines Matching refs:timestamp
2 …time() function : usage variation - Passing higher positive and negetive float values to timestamp.
7 /* Prototype : array localtime([int timestamp [, bool associative_array]])
20 echo "\n-- Testing localtime() function with 'float 12.3456789000e10' to timestamp --\n";
21 $timestamp = 12.3456789000e10;
22 var_dump( localtime($timestamp) );
23 var_dump( localtime($timestamp, $is_associative) );
25 echo "\n-- Testing localtime() function with 'float -12.3456789000e10' to timestamp --\n";
26 $timestamp = -12.3456789000e10;
27 var_dump( localtime($timestamp) );
28 var_dump( localtime($timestamp, $is_associative) );
35 -- Testing localtime() function with 'float 12.3456789000e10' to timestamp --
43 -- Testing localtime() function with 'float -12.3456789000e10' to timestamp --