如何在PHP中减去microtime并以毫秒显示日期?

时间:2012-02-21 02:49:58

标签: php microtime

如何在php中减去microtime并以毫秒显示日期?

例如:我已设置结束日期和时间

$endtime = 2012-02-21 10:29:59;

然后我有从微量时间转换的当前日期或开始日期

$starttime = 2012-02-21 10:27:59.452;

function getTimestamp()
{
        $microtime = floatval(substr((string)microtime(), 1, 8));
        $rounded = round($microtime, 3);
        return date("Y-m-d H:i:s") . substr((string)$rounded, 1, strlen($rounded));
}

echo getTimestamp(); //sample output 2012-02-21 10:27:59.452

现在我想减去: $ finaldate = $ endtime - $ starttime;

我希望我的输出如下: 00:00:02.452

2 个答案:

答案 0 :(得分:18)

您需要使用microtime作为开始/结束值,并且只将其格式化以便在结尾显示。

// Get the start time in microseconds, as a float value
$starttime = microtime(true);

/************/
/* Do stuff */
/************/

// Get the difference between start and end in microseconds, as a float value
$diff = microtime(true) - $starttime;

// Break the difference into seconds and microseconds
$sec = intval($diff);
$micro = $diff - $sec;

// Format the result as you want it
// $final will contain something like "00:00:02.452"
$final = strftime('%T', mktime(0, 0, $sec)) . str_replace('0.', '.', sprintf('%.3f', $micro));

注意:这是从microtime返回浮点值并使用浮点运算来简化数学运算,因此浮动舍入问题导致数字可能会略微偏离,但是您将结果四舍五入无论如何最终都是3位数,处理器时间的微小波动总是比浮点误差大,所以这对你来说不是多层次的问题。

答案 1 :(得分:3)

phpmyadmin使用这个代码来计算查询所花费的时间。它与您的要求类似:

//time before
list($usec, $sec) = explode(' ',microtime($starttime));
$querytime_before = ((float)$usec + (float)$sec);
/* your code */

//time after
list($usec, $sec) = explode(' ',microtime($endtime));
$querytime_after = ((float)$usec + (float)$sec);
$querytime = $querytime_after - $querytime_before;

我认为这对你有用。您只需要计算输出格式