1
我有下面的代碼,以創建一個先前下個月鏈接:上一個和下一個月未正常工作
$date = mktime(0, 0, 0, date("m"), 1, date("y"));
$nextMonth = strftime('%B', strtotime('+1 month', $date));
$prevMonth = strftime('%B', strtotime('-1 month', $date));
$nextYear = strftime('%Y', strtotime('+1 month', $date));
$prevYear = strftime('%Y', strtotime('-1 month', $date));
現在,當我到十二月
the next year variable 2016
the previous year variable 2015
但是當現在2016年1月
the next year variable 2015
the previous year variable 2014
日期我不明白爲什麼它這樣做,或者我在做什麼錯在這裏。任何人有任何想法如何解決這個問題?
https://eval.in/384578 – splash58
https://eval.in/ 384585 >>我將您的日期代碼重寫爲接受月份和年份作爲參數的函數,並且它正確輸出。 (更新的鏈接顯示相對於輸出結果的當前月份/年份,使用'>'縮進。 –
你是男人,那就是我正在尋找thnks! –