一尘不染

将日期增加一个月

php

假设我有一个以下格式的日期:2010-12-11(年一日)

使用PHP,我想将日期增加一个月,并且我希望年份可以在必要时自动增加(即,从2012年12月到2013年1月增加)。

问候。


阅读 238

收藏
2020-05-29

共1个答案

一尘不染

$time = strtotime("2010.12.11");
$final = date("Y-m-d", strtotime("+1 month", $time));

// Finally you will have the date you're looking for.
2020-05-29