在我的日历中,我需要将当前年份与上一年和下一年的年份进行比较,以确定月份是否需要重置为1月,并且年份递增/递减。我已经有了这个以获得下一个&前几个月:
$prev_month = date('F',strtotime("last month"));
$next_month = date('F',strtotime("next month"));
有人知道怎么做吗?提前谢谢 - 坦纳。
答案 0 :(得分:5)
$next_month_y = date('Y',strtotime("last month"));
$prev_month_y = date('Y',strtotime("next month"));