Lines Matching refs:localtime
2 Test localtime() function : basic functionality
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() : basic functionality ***\n";
20 // Calling localtime() with all possible arguments
21 var_dump( localtime($timestamp, $associative_array) );
23 // Calling localtime() with possible optional arguments
24 var_dump( localtime($timestamp) );
26 // Calling localtime() with mandatory arguments
27 var_dump( localtime() );
32 *** Testing localtime() : basic functionality ***