在线文档教程
PHP
日期和时间 | Date and Time

gettimeofday

gettimeofday

(PHP 4, PHP 5, PHP 7)

gettimeofday - 获取当前时间

Description

mixed gettimeofday ([ bool $return_float = false ] )

这是gettimeofday(2)的一个接口。它返回一个包含从系统调用返回的数据的关联数组。

Parameters

return_float

设置TRUE为时,将返回浮点数而不是数组。

Return Values

默认情况下返回一个数组。如果return_float设置,则返回一个浮点数。

数组键:

  • “sec” - 自Unix纪元以来的秒数

  • “usec” - 微秒

  • “minuteswest” - 格林威治以西的分钟

  • “dsttime” - dst校正类型

Changelog

描述
5.1.0return_float参数已添加。

Examples

Example #1 gettimeofday() example

<?php print_r(gettimeofday() echo gettimeofday(true ?>

上面的例子会输出类似于:

Array ( [sec] => 1073504408 [usec] => 238215 [minuteswest] => 0 [dsttime] => 1 ) 1073504408.23910

← getdate

gmdate →

© 1997–2017 The PHP Documentation Group

根据知识共享署名许可证v3.0或更高版本授权。