我得到这样的一天结束:
function endofday($date_to_change)
{
$date_to_change = date('Y-m-d');
$date_to_change = date('Y-m-d H:i:s', strtotime("+23 hours 59 minutes 59 seconds", strtotime($date_to_change)));
return date("Y-m-d H:i:s", $date_to_change);
}
它有效,但这是从日期获取23:59:59的正确且最有效的方法吗?我的目标是从传入的有或没有时间的日期的00:00:00到23:59:59之间从mysql数据库中选择行。
HUWWW
慕码人8056858