The gettimeofday() function returns the current time.
PHP gettimeofday() Function has the following syntax.
gettimeofday(return_float);
PHP gettimeofday() Function has the following syntax.
PHP gettimeofday() Function returns an associative array by default, with the following array keys:
If the return_float parameter is set to true, a float is returned
Return the current time:
<?php
// Print the array from gettimeofday()
print_r(gettimeofday());
// Print the float from gettimeofday()
echo gettimeofday(true);
?>
The code above generates the following result.
The following code shows how to get number of hours offset from GMT.
<?php
$time = gettimeofday();
$GMToffset = $time['minuteswest'] / 60;
echo "Server location is $GMToffset hours west of GMT.";
?>
The code above generates the following result.