• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • gettimeofday()

    (PHP 4, PHP 5, PHP 7)

    取得当前时间

    说明

    gettimeofday([bool $return_float= false]): mixed

    本函数是 gettimeofday(2)的接口。返回一个关联数组,包含有系统调用返回的数据。

    参数

    $return_float

    当其设为TRUE时,会返回一个浮点数而不是一个数组。

    返回值

    默认返回一个array。如果$return_float设置了则会返回一个float。

    数组中的键为:

    • "sec"-自 Unix 纪元起的秒数
    • "usec"-微秒数
    • "minuteswest"-格林威治向西的分钟数
    • "dsttime"-夏令时修正的类型

    更新日志

    版本说明
    5.1.0增加了参数$return_float

    范例

    Example #1gettimeofday()例子

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

    以上例程的输出类似于:

    Array
    (
        [sec] => 1073504408
        [usec] => 238215
        [minuteswest] => 0
        [dsttime] => 1
    )
    1073504408.23910
    
    The types of DST correction (from sys/time.h on a Linux system):
     0   Not on DST
     1   USA DST
     2   Austrailian DST
     3   Western European DST
     4   Middle European DST
     5   Eastern European DST
     6   Canada DST
     7   Great Britain and Eire DST
     8   Rumania DST
     9   Turkey
    10   Australian DST (with shift in 1986)
    A small improvement on getTimer. Using vsprintf instead of sprintf there is no need to assign the array:
    <?php
    function utime()
    {
     return (float) (vsprintf('%d.%06d', gettimeofday()));
    }
    ?>
    In a test on my machine getTimer took 0.037519 seconds to run through 1000 iterations versus 0.027912 seconds for utime. In total, utime runs about 25% quicker. The use is negligible in an actual benchmarking scenario, but this could provide a slightly more accurate estimate. Of course the time it takes to run the function could always be stored at the start and subtracted from your total value each time it is run.

    上篇:getdate()

    下篇:gmdate()