事件返回标准化时间戳,格式为"2008年10月25日星期六21:55:29+0000"我如何将其与PHP中的当前时间进行比较,以便以"已经15分钟了!"或"已经三天了!"的形式给出结果。此外,我如何获得当前时间?
首先使用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;
有关计算相对时间的详细信息,请参阅如何计算相对时间?。