我知道 date("Y")、date("m") 和 date("d") 将分别返回当前年份 (2013)、月份 (07) 和日期 (11)。
我正在使用日期格式:“2013-07-11”。我有这样的当前日期。现在我想使用 PHP 以某种方式获取值“2013-06-11”和“2013-08-11”。
获取此值的代码可能是什么(上个月的同一日期和下个月的同一日期)?
我试过了:
$LastMonth = date ("m") - 1;
$LastDate = date("Y") . "-0" . $LastMonth . "-" . date("d");
但这会在 10 月返回错误。10 月将显示“2013-010-11”。
有什么更好的解决方案?谁能帮我?