可能重复:
PHP 本月的最后一天
在 PHP 中,我试图得到上个月的最后一天。例如,今天是 2012 年 12 月 11 日。所以我试图抓住的日期是 11 月 30 日。
这就是我目前正在尝试做的事情:
//this grabs the last daye of this month
$current_month = date('Y-m-t',strtotime('today'));
//this should grab November 30th.
$last_month = date("F, Y",strtotime($current_month." -1 month ")
它没有抓住 11 月 30 日,而是抓住了 12 月 1 日。似乎“-1 个月”只是减去 30 天。
我如何正确抓住上个月的最后一天?