## 获取两个时间之间的间距时间
$s = ‘2017-02-05‘;$e = ‘2017-07-20‘;
$start = new \DateTime($s);$end = new \DateTime($e);//时间间距 这里设置的是一个月
$interval = \DateInterval::createFromDateString(‘1 month‘);$period = new \DatePeriod($start, $interval, $end);
foreach ($period as $dt) {echo $dt->format("Y-m") . "
\n";
}
输出结果:
2017-03
2017-04
2017-05
2017-06
获取头部和尾部的时间范围:
有时候会遇到这样一个场景如:
存在两行表:
1. 月度考情表(记录每个员工一个月的考勤)
2. 日度考勤表(记录每个员工每一天的考勤)
这时候有一个需求是这样的:
查询 “2017-02-05” —— “2017-012-20”
这之间的员工的考勤数据。
一般情况下会这么做,直接 根据时间筛选日度考勤表。结果是没问题的,但是试想一下,如果有2000个员工,每天的考勤, 那一年是不是 73W的数据了,如果两年呢? 加上做一些其他的操作,是不是效率很慢?
这个时候可以查询 “2017-02-05” —— “2017-012-20” 两个日期时间的完整月份也就是 2017-03,2017-04,2017-05..以此类推
剩下的不完整日期再拿出来 筛选日度考勤表,那么筛选的量会大大降低。
以下是获取不完整日期的代码:
$s = ‘2017-02-05‘;$e = ‘2017-07-20‘;//获取头部的时间范围
if (date(‘j‘, strtotime($s)) > 1) {$start_day_head = date(‘Y-m-01‘, strtotime($s));$end_day_head = date(‘Y-m-t‘, strtotime($s));$s = date(‘Y-m-01‘, strtotime("+1 months", strtotime($s)));
}//获取尾部的时间范围
if (date(‘j‘, strtotime($e)) > 1) {$start_day_tail = date(‘Y-m-01‘, strtotime($e));$end_day_tail = date(‘Y-m-t‘, strtotime($e));$e = date(‘Y-m-t‘, strtotime("-1 months", strtotime($e)));
}
原文:http://www.cnblogs.com/bluebirds/p/7207348.html