dtq7387 2011-07-21 05:35
浏览 96
已采纳

从另一个日历时间减去一个日期时间并返回天数

I have 2 DateTime objects. One which represents 2 days from now and the other which represents 2 days and 6 months from now.

I need to be able to count the number of days between these two dates to display to users which dates they can book on.

I have calculated the two dates successfully but I am struggling finding a way to subtract them and return the difference in days.

  • 写回答

2条回答 默认 最新

  • douyuan1049 2011-07-21 05:39
    关注
    $first; // first datetime object 
    $second; // second datetime object 
    
    $diff = $first->diff($second);
    
    echo $diff->days;
    

    Also take a look at DateInterval class at php.net

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

报告相同问题?

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

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

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

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

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

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

客服 返回
顶部