php获取一个月的第一天和最后一天

jerry thinkphp 2015年11月19日 收藏
用php来获取一个月的第一天和最后一天,最近要开放任务系统,在某个地方看到的,记录一下,分享给大家,不喜勿喷!
//调用demo
$date = date('Y-m-d H:i:s'); //当前时间
print_r(getthemonth($date));

function getthemonth($date)
{
    $firstday = date('Y-m-01', strtotime($date));
    $lastday = date('Y-m-d', strtotime("$firstday +1 month -1 day"));
    return array($firstday, $lastday);
}