PHP gettimeofday() Function
Definition
The gettimeofday() function returns the current time.
Syntax
PHP gettimeofday() Function has the following syntax.
gettimeofday(return_float);
Parameter
PHP gettimeofday() Function has the following syntax.
- return_float - Optional. When set to TRUE, a float instead of an array is returned. Default is FALSE
Return
PHP gettimeofday() Function returns an associative array by default, with the following array keys:
- [sec] - seconds since the Unix Epoch
- [usec] - microseconds
- [minuteswest] - minutes west of Greenwich
- [dsttime] - type of dst correction
If the return_float parameter is set to true, a float is returned
Example
Return the current time:
<?php/*w w w. j a va 2 s . c om*/
// Print the array from gettimeofday()
print_r(gettimeofday());
// Print the float from gettimeofday()
echo gettimeofday(true);
?>
The code above generates the following result.