1. ホーム
  2. php

[解決済み] 日付の1ヶ月分増加

2022-08-19 14:37:54

質問

例えば、次のような形式の日付があるとします。2010-12-11 (年-月-日)

PHPでは、日付を1ヶ月ずつ増加させ、必要であれば年も自動的に増加させたいと思います(例えば、2012年12月から2013年1月に増加させるなど)。

よろしくお願いします。

どのように解決するのですか?

$time = strtotime("2010.12.11");
$final = date("Y-m-d", strtotime("+1 month", $time));

// Finally you will have the date you're looking for.