7

在 PHP 5.2 中,如何获取一天中的最后一秒?time() + 86400 只得到第二天?

4

2 回答 2

22
echo date('r', strtotime('tomorrow') - 1);

returns 'Mon, 18 Jan 2010 23:59:59'

你需要处理闰秒(时间如23:59:60

于 2010-01-18T07:45:05.377 回答
12
strtotime('23:59:59');
于 2010-01-18T07:46:47.773 回答