2009年10月15日 星期四

找出這個月的最後一天

//找出下個月的第一天
$nextmonth = date('Y-m-01',strtotime(date("Y-m-d").' +1 month'));

//下個月的第一天的前一天即為這個月的最後一天
$lastday = date("Y-m-d", strtotime('-1 days', strtotime($nextmonth) ));

沒有留言: