如何获取当前月份,每月第一天,零小时的时间戳

2022-08-30 16:37:00

我正在尝试获取每月第一天的时间戳,即 00:00:00。

例如,时间戳 Jan 01 2012 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;

这是返回当月当前日期的零小时,而不是月初。

有什么建议吗?


答案 1

试试这个:

echo date( 'F jS Y h:i:s A', strtotime( 'first day of ' . date( 'F Y')));

这将输出:

June 1st 2012 12:00:00 AM

答案 2

试试这个

$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

阅读 PHP 手册中的 date()time() 函数。


推荐