该事件返回标准时间戳,格式为“Sat Oct 25 21:55:29 +0000 2008” 我如何将它与PHP中的当前时间进行比较,以便以“已经15分钟!”的形式给出结果。或者“已经三天了!”另外,我如何获得当前时间?
答案 0 :(得分:6)
首先使用strtotime()将该字符串转换为UNIX时间戳:
$event_time = strtotime('Sat Oct 25 21:55:29 +0000 2008');
然后使用time():
获取当前的UNIX时间戳$current_time = time();
然后获取这些时间戳之间的秒数:
$difference = $current_time - $event_time;
最后使用除法将秒数转换为天数或小时数等等:
$hours_difference = $difference / 60 / 60;
$days_difference = $difference / 60 / 60 / 24;
有关计算相对时间的详细信息,请参阅How do I calculate relative time?。