dora0817 2013-12-19 07:53
浏览 19
已采纳

Php mysql时间戳 - 2小时[关闭]

I have this working for the current time in PHP:

$today = date("Y-m-d H:i:s");

I cant figure out how to append this to have the current time -2 hours in this same format. Can anyone help me out quick? Thank you!

  • 写回答

3条回答 默认 最新

  • dsjbest2015 2013-12-19 07:56
    关注

    You could use strtotime():

        $minus_two_hrs = date("Y-m-d H:i:s", strtotime("-2 hours"));
    

    The strtotime() function returns a timestamp, which you can then pass to date() to get the appropriately formatted date.

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

报告相同问题?

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

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

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

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

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

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

客服 返回
顶部