$date ="2018-02-15";
$next_month = date('$date', strtotime('+1 month');
echo "$next_month";
我希望输出为"2018-03-15"
;
但是这段代码不起作用。
答案 0 :(得分:2)
您可以使用strtotime
$date ="2018-02-15";
$time = strtotime($date);
$next_month = date("Y-m-d", strtotime("+1 month", $time));
echo $next_month;
结果将是:
2018-03-15
Doc:strtotime
答案 1 :(得分:0)
使用它:
$date ="2018-04-22";
$next_month = date('Y-m-d', strtotime($date.' +1 month'));
echo "$next_month";