今月からのみコメントを取り込む以下の機能があります。来月からコメントを出さないようにする必要があります。
翌月を次のように定義し$to_date
てい+1
ます。これを変更して、翌年になる時期を自動的に把握する、つまり13か月目に表示されないようにするにはどうすればよいですか。ありがとう
Function to only pull comments from a date range of the current month
$from_date = date('Y-m') . '1 00:00:00';
$to_date = date('m') . '1 00:00:00'+1;
$all_comments = Comment::find('all',
array(
'conditions'=>array('response_date_and_time >= ? AND response_date_and_time <= ?', $from_date, $to_date )
)
);