假设我有一个以下格式的日期:2010-12-11(年一日)
使用PHP,我想将日期增加一个月,并且我希望年份可以在必要时自动增加(即,从2012年12月到2013年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.