以下のコードは、今日の日付から X か月前までの日付を取得しますが、代わりに 2012 年 11 月 1 日から X か月後までの日付を取得したいと考えています。これはどのように行うことができますか?
// $nrOfMonths can be 1, 3 and 6
function GetIncidents(nrOfMonths) {
$stopDate = strtotime('-' . $nrOfMonths .' months');
... rest of the code ...
}