我正在使用
PHP和MysqL,并希望计算两个日期时间之间的日期时间差.我有一个消息表,在该表中createdate是一个字段.我想以1天2小时前的格式找出当前日期的日期和时间差异.最好的方法是什么?
使用PHP的内置日期函数:
原文链接:https://www.f2er.com/php/137532.html<?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");