Lines Matching refs:localtime
2 Test localtime() function : usage variation - Passing higher positive and negetive float values to …
5 /* Prototype : array localtime([int timestamp [, bool associative_array]])
6 * Description: Returns the results of the C system call localtime as an associative array
12 echo "*** Testing localtime() : usage variation ***\n";
18 echo "\n-- Testing localtime() function with 'float 12.3456789000e10' to timestamp --\n";
20 var_dump( localtime($timestamp) );
21 var_dump( localtime($timestamp, $is_associative) );
23 echo "\n-- Testing localtime() function with 'float -12.3456789000e10' to timestamp --\n";
25 var_dump( localtime($timestamp) );
26 var_dump( localtime($timestamp, $is_associative) );
31 \*\*\* Testing localtime\(\) : usage variation \*\*\*
33 -- Testing localtime\(\) function with 'float 12.3456789000e10' to timestamp --
75 -- Testing localtime\(\) function with 'float -12.3456789000e10' to timestamp --