3
如何在給定月份後獲取月份名稱。因此,對於6月,我想七月在給定月份名稱之後獲取月份
我曾嘗試:
$next_month = date('F',strtotime('June', "next month"));
這顯示一月,這顯然是錯誤的,我找的七月。
然後,我會如何得到前一個月?
我已經試過
$prev_month = date('F',strtotime('June - 1 month'));
如何在給定月份後獲取月份名稱。因此,對於6月,我想七月在給定月份名稱之後獲取月份
我曾嘗試:
$next_month = date('F',strtotime('June', "next month"));
這顯示一月,這顯然是錯誤的,我找的七月。
然後,我會如何得到前一個月?
我已經試過
$prev_month = date('F',strtotime('June - 1 month'));
$next_month = date('F',strtotime('June + 1 month'));
或
$next_month = date('F',strtotime('June next month'));
編輯
$next_month = date('F',strtotime('June last month'));
echo date('F',strtotime('June + 1 month'));
這工作非常出色,謝謝。 – RSM
查看 – RSM
的更新查看編輯到您更新的問題 –