Web開発、Webデザイン、SEO、携帯コンテンツなどWebにまつわるテクノロジーを追っかけるブログ。旧名「Web屋に復帰した人間のリハビリ日記」 PHPには strtotimeという関数があります。引数に例えば「+1 month」と指定すれば1ヶ月後のタイムスタンプを返してくれます。 <?php $nextmanth = date("Y-m", strtotime("+1 month"));?> で翌月を返してくれると思ってました。しかし甘かった!! 例えば今月28日の時点では問題なかったのですが、 例:2009年1月28日の時点 <?php $nextmonth = date("Y-m", strtotime("+1 month")); echo $nextmonth;?> 結果:2009-02 これが31日では 例:2009年1月31日の時点 <?php $nextmonth = d