减去时间。日是一样的

时间:2011-04-26 03:31:16

标签: php date time subtraction

  

可能重复:
  Subtract time in PHP

我如何减去时间?这一天仍然是一样的。我只需要减去两次。

日期= 2011-04-26 开始时间= 12:39:53 结束时间= 14:34:28

现在我需要计算Endtime和Starttime之间的时差。

由于

1 个答案:

答案 0 :(得分:0)

试试这个:

 <?php
    $lasttime = strtotime("-67 minutes"); // for instance
    $currentdate = strtotime("now");
    $lastact = date("Y-m-d g:i:s a", $lasttime);
    $now = date("Y-m-d g:i:s a", $currentdate);
    $daycheck = date("d", $now) - date("d", $lastact);
    $minutecheck = date("i", $now) - date("i", $lastact);
    $difference = $currentdate - $lasttime;
 ?>