$month_start = date('Ym01 00:00:00'); //本月第一天
$month_end = strtotime($month_start);
$month_end = strtotime('+1 month -1 days', $month_end);
$month_end = date("Ymd 00:00:00", $month_end); //本月最後一天
使用原理為將日期透過strtotime進行轉換後,
再加上一個月的時間並減一天。
則剛好等於當月的最後一天。
沒有留言:
張貼留言