我正在尝试使用以下函数获取一个月的范围:
static public function getMonthRange($month, $year)
{
$date = DateTime::createFromFormat('d-m-Y','01-'.$month.'-'.$year);
$start = $date->getTimestamp();
return array(
'start' => $start,
'end' => $date->modify('first day of next month')->getTimestamp()
);
}
现在这工作正常,除了三月。当我通过计算每月的天数来检查这些值时,((end - start) / 60 / 60 / 24)
我发现三月是 30.958333333333 天,而其他月份给出了正确的天数。
我决定自己在这样的计算中输入日期:
$march = ((strtotime('2012-04-01') - strtotime('2012-03-01')) / 60 / 60 / 24); //30.95833..
$april = ((strtotime('2012-05-01') - strtotime('2012-04-01')) / 60 / 60 / 24); //30
$may = ((strtotime('2012-06-01') - strtotime('2012-05-01')) / 60 / 60 / 24); //31
它仍然给了我错误的三月天数。我的方法有问题吗?更重要的是;我该如何解决?
提前致谢。