なぜこのコードはプレーンとして機能しませんか?複数の月を追加しても動作しません
コード:
$regDate = '2016-10-03';
echo $date1 = date('m', strtotime('+4 month', strtotime($regDate))); echo '<br>';
echo $date2 = date('m', strtotime('+4 month', strtotime($date1))); echo '<br>';
echo $date3 = date('m', strtotime('+4 month', strtotime($date2))); echo '<br>';
echo $date4 = date('m', strtotime('+4 month', strtotime($date3))); echo '<br>';
私が取り戻す:
あなたは 'YYYY-MM-DD'形式の日付を使用してみましたか? –
唯一の月を与える必要があります –