添加两次以获得总微秒

时间:2012-11-21 12:23:28

标签: php

我想添加两个日期,并希望总微秒。请告诉我如何添加它的另一种方式。我正在添加timestramp并显示总数。请给我一些建议。我不知道,我发现谷歌,但没有得到任何东西。我需要微秒。

<?php
$st="2012-11-05 01:23:03";
$et="2012-11-07 05:23:04";

$totalMicroscond= $st+$et;

?>

2 个答案:

答案 0 :(得分:0)

$total = strtotime($st) + strtotime($et);

答案 1 :(得分:0)

我没有看到添加这两个日期的合理原因,所以我假设您要计算日期之间的差异。

<?php
$st="2012-11-05 01:23:03";
$et="2012-11-07 05:23:04";

$totalMicroscond= (strtotime($et)- strtotime($st))*1000;
echo $totalMicroscond;

?>