我有一个名为$effectiveDate
包含日期2012-03-26的变量。
我想在此日期之前增加三个月,但没有成功。
这是我尝试过的:
$effectiveDate = strtotime("+3 months", strtotime($effectiveDate));
和
$effectiveDate = strtotime(date("Y-m-d", strtotime($effectiveDate)) . "+3 months");
我究竟做错了什么?这两段代码都不起作用。