我想在00:00:00获取该月第一天的时间戳。
例如,2012年1月1日00:00:00
的时间戳我这样做:
$test_month = time(); // Seconds
$test_month = date('M', $test_month); // This month
$test_month = strtotime($test_month); // Timestamp of this month
echo $test_month;
这是返回当月当天的零小时,而不是月初。
有什么建议吗?
答案 0 :(得分:22)
试试这个:
echo date( 'F jS Y h:i:s A', strtotime( 'first day of ' . date( 'F Y')));
这将输出:
June 1st 2012 12:00:00 AM
答案 1 :(得分:14)
试试这个
$time = strtotime(date('Y-m-01 00:00:00')); // == 1338534000
转换为:
$date = date('Y-m-d H:i:s', $time); // == 2012-06-01 00:00:00
答案 2 :(得分:2)
echo date("Y-m-d 00:00:00", strtotime("first day of this month"));
输出:
2017-05-01 00:00:00