在我的Web应用程序中,我有一个用户在一个简单的文本框中输入日期.那个输入(当然是在消毒之后)是通过strtotime()运行的,86399被添加到它,以便使时间戳写在一天结束(11:59:59).这是为了到期日期(所以如果日期过去了,应用程序会提出一个标志)
对于我测试的日子,它工作…
1月5日保存为1月5日,最后一天结束.
3月13日拯救了3月13日
3月15日拯救了3月15日
3月14日,无论什么原因,自己在3月15日.
3月14日神秘的几秒钟短还是什么东西?
旧代码:
if ($_POST['dateto'] != '') { $dateto = strtotime(MysqL_real_escape_string($_POST['dateto'])) + 86399; }
新代码:
# Offset to "end of day" list($y,$m,$d) = explode('-',date("Y-m-d",strtotime($_POST['dateto']))); $d++; $dateto = strtotime($y . '-' . $m . '-' . $d) - 1;