我得到了这样的日期之间的时差:
$time1 = "2013-02-25 12:00:00";
$time2 = "2013-01-01 12:00:00";
$tdiff = strtotime($time1) - strtotime($time2);
我想从中提取天、小时和分钟$tdiff
。输出应该是:35 days 6 hours 14 minutes
我真的搜索并尝试自己做一些事情。但我无法获得真正的价值。
---- 编辑 ---- 我可以找到日期差异。我想从计算的时间中提取天、小时、分钟......
---- EDIT 2 ---- 这是我完整的mysql代码
select (
select avg(UNIX_TIMESTAMP(tarih)) from table1
where action in (6) and who = '".$user."' and dates between '".$date1."' and '".$date."'
) - (
select avg(UNIX_TIMESTAMP(tarih_saat)) from table2
where action in (6) and active = 1 and dates between '".$date1."' and '".$date2."
)
这个查询返回给我时间的真实价值。这个查询对我来说工作正常。结果是这样的:215922
。结果类型为 UNIX_TIMESTAPM。所以我想知道这个时间戳有多少天、多少小时和多少分钟。