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.





















Home »
  PHP Tutorial »
    Function reference »




PHP Array Functions
PHP Calendar Functions
PHP Class Functions
PHP Data Type Functions
PHP Date Functions
PHP File Functions
PHP Image Functions
PHP Math Functions
PHP MySQLi Functions
PHP SimpleXML Functions
PHP String Functions
PHP XML Functions
PHP Zip Functions