echo mydate(strtotime('1 am first day of this month'));
以上与结果2017-10-01 01:00:00
一起使用,但我很难在凌晨0点完成。 24am, 24pm, 0pm, first second
都不起作用。
答案 0 :(得分:9)
答案 1 :(得分:0)
最好使用DateTime
进行日期和时间操作,
$date = new DateTime('midnight first day of this month');
echo $date->format('Y-m-d H:i:s');
或者如果需要UnixTimestamp:$date->format('U');
或echo $date->getTimestamp();