给定格式为Y-m-d
的日期字符串(例如2014-4-11
),如何在当天年初获取UNIX时间戳为12 am?会涉及date_parse_from_format()
吗?
由于
答案 0 :(得分:0)
您只需使用strtotime()
$date = "2014-04-11";
$timestamp = strtotime($date);
哪个inturm给你 -
$d = date('Y-m-d H:i:s', $timestamp); // 2014-04-11 00:00:00
尝试在线转换以测试 - http://www.onlineconversion.com/unix_time.htm