php – 计算两个日期时间之间的差异

前端之家收集整理的这篇文章主要介绍了php – 计算两个日期时间之间的差异前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 PHPMysqL,并希望计算两个日期时间之间的日期时间差.我有一个消息表,在该表中createdate是一个字段.我想以1天2小时前的格式找出当前日期的日期和时间差异.最好的方法是什么?
使用PHP的内置日期函数
<?PHP
    $start_time = "Y-m-d H:i:s"; // fill this in with actual time in this format
    $end_time = "Y-m-d H:i:s"; // fill this in with actual time in this format

    // both of the above formats are the same as what MysqL stores its
    // DATETIMEs in

    $start = new DateTime($start_time);
    $interval = $start->diff(new DateTime($end_time));

    echo $interval->format("d \d\a\y\s h \h\o\u\r\s");

> DateInterval documentation
> DateTime::diff documentation

原文链接:https://www.f2er.com/php/137532.html

猜你在找的PHP相关文章