我正在使用这样的代码来捕获与时间相关的记录。
这是一个sql片段...
$SQL_p .= " and UNIX_TIMESTAMP(".$data['task_filter'].") >= " .
strtotime(date('Y-m-d h:i:s',strtotime(str_replace('/','-',$data['datepicker'].' 00:00:00'))));
$SQL_p .= " and UNIX_TIMESTAMP(".$data['task_filter'].") <= " .
strtotime(date('Y-m-d h:i:s',strtotime(str_replace('/','-',$data['datepicker2'].' 23:59:59'))));
使用格式输入日期并使用保存日期的 var进行dd/mm/YYYY
转换str_replace('/','-',$data['datepicker2'])
$data['datepicker2']
在命令行使用 php5 进行测试,当我输入 ....
echo date('Y-m-d h:i:s',strtotime(str_replace('/','-','25/11/2011 00:00:00')));
我得到2011-11-25 12:00:00
但我期望的是2011-11-25 00:00:00
还
echo date('Y-m-d h:i:s',strtotime(str_replace('/','-','25/11/2011 23:59:59')));
返回2011-11-25 11:59:59
不是预期的2011-11-25 23:59:59
。
我究竟做错了什么 ?