Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の月の後の月名を取得するにはどうすればよいですか。6月には7月が必要です
私が試してみました:
$next_month = date('F',strtotime('June', "next month"));
この 1 月という表示は明らかに間違っています。7 月を探しています。
どうすれば前月を取得できますか?
私が試してみました
$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'));