我有以下功能可以仅从当月提取评论。我需要它不要从下个月拉出任何评论。
我将下个月定义为$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 )
)
);