Query: gettimeofday
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
GETTIMEOFDAY(3) 1 GETTIMEOFDAY(3) gettimeofday - Get current timeSYNOPSISmixed gettimeofday ([bool $return_float = false])DESCRIPTIONThis is an interface to gettimeofday(2). It returns an associative array containing the data returned from the system call.PARAMETERSo $return_float - When set to TRUE, a float instead of an array is returned.RETURN VALUESBy default an array is returned. If $return_float is set, then a float is returned. Array keys: o "sec" - seconds since the Unix Epoch o "usec" - microseconds o "minuteswest" - minutes west of Greenwich o "dsttime" - type of dst correctionCHANGELOG+--------+-----------------------------------------+ |Version | | | | | | | Description | | | | +--------+-----------------------------------------+ | 5.1.0 | | | | | | | The $return_float parameter was added. | | | | +--------+-----------------------------------------+EXAMPLESExample #1 gettimeofday(3) example <?php print_r(gettimeofday()); echo gettimeofday(true); ?> The above example will output something similar to: Array ( [sec] => 1073504408 [usec] => 238215 [minuteswest] => 0 [dsttime] => 1 ) 1073504408.23910 PHP Documentation Group GETTIMEOFDAY(3)
Related Man Pages |
---|
settimeofday(2) - osx |
settimeofday(2) - mojave |
gettimeofday(2) - osx |
gettimeofday(3posix) - posix |
gettimeofday(2) - freebsd |
Similar Topics in the Unix Linux Community |
---|
the problem of gettimeofday |