dsg435665475 2013-08-22 04:15
浏览 75
已采纳

使用PHP中的UNIX时间戳计算时间差[重复]

This question already has an answer here:

I have 2 unix time, one is todays date and other is expiration time.

  • Todays Time: 1377173245 (2013-08-22 12:07:25)
  • Expiration Time: 1406303166 (2014-07-25 15:46:06)

What I want to achieve is calculate remaining time to expire the listing. In current case, it should show, 11 months -- hours -- minutes -- seconds I didn't find any good solution to calculate the difference. I doubt is it possible to calculate time difference using UNIX time system?

Thank you :-)

</div>
  • 写回答

5条回答 默认 最新

  • doupu1727 2013-08-22 04:23
    关注

    This is what you're looking for: DateTime::diff

    First create object with 1st date:

    $date = new DateTime('2013-08-22 12:07:25');
    

    Then use the diff method:

    $diff = $date->diff(new DateTime('2014-07-25 15:46:06'));
    

    Now if you print $diff variable, you will see the array containing values for hour, minute, day and so on.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部