2012-05-09 199 views
3

如何在給定月份後獲取月份名稱。因此,對於6月,我想七月在給定月份名稱之後獲取月份

我曾嘗試:

$next_month = date('F',strtotime('June', "next month")); 

這顯示一月,這顯然是錯誤的,我找的七月。

然後,我會如何得到前一個月?

我已經試過

$prev_month = date('F',strtotime('June - 1 month')); 

回答

10
$next_month = date('F',strtotime('June + 1 month')); 

$next_month = date('F',strtotime('June next month')); 

編輯

$next_month = date('F',strtotime('June last month')); 
+0

這工作非常出色,謝謝。 – RSM

+0

查看 – RSM

+0

的更新查看編輯到您更新的問題 –

1
echo date('F',strtotime('June + 1 month'));