日付に1日を追加する私のコードは、日を追加する前の日付を返します。1日を追加した後の日付は、
2009-09-30 20:24:00
翌月にロールオーバーする必要があります。1970-01-01 17:33:29
<?php
//add day to date test for month roll over
$stop_date = date('Y-m-d H:i:s', strtotime("2009-09-30 20:24:00"));
echo 'date before day adding: '.$stop_date;
$stop_date = date('Y-m-d H:i:s', strtotime('+1 day', $stop_date));
echo ' date after adding one day. SHOULD be rolled over to the next month: '.$stop_date;
?>
以前に非常によく似たコードを使用したことがありますが、ここで何が問題になっていますか?