PHP gettimeofday() Function
In this chapter you will learn:
- Definition for PHP gettimeofday() Function
- Syntax for PHP gettimeofday() Function
- Parameter for PHP gettimeofday() Function
- Return value for PHP gettimeofday() Function
- Example - Return the current time
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/* j a v a2 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.
Next chapter...
What you will learn in the next chapter:
- Definition for PHP gmdate() Function
- Syntax for PHP gmdate() Function
- Parameter for PHP gmdate() Function
- Format for PHP gmdate() Function
- Return value for PHP gmdate() Function
- Example - Format a GMT/UTC date and time and return the formatted date strings
Home » PHP Tutorial » PHP Date Functions