PHP计算指定时间范围内的所有小时,日期,月份,季度,年份
程序员文章站
2022-03-04 11:04:08
...
PHP计算指定时间范围内的所有小时,日期,月份,季度,年份,支持时间间隔,默认步长为1
if (!function_exists('dateByInterval')) {
/**
* 查询指定时间范围内的所有日期,月份,季度,年份
* @param string $startDate 指定开始时间格式:Y-m-d H:i:s
* @param string $endDate 指定结束时间格式:Y-m-d H:i:s
* @param string $type 类型:hour 小时;day 天;month 月份;quarter 季度;year 年份
* @param int $interval 时间间隔:值为1表示间隔步长1,值为2表示间隔步长2,以此类推。。。
* @return mixed
*/
function dateByInterval($startDate, $endDate, $type, $interval = 1)
{
if (date('Y-m-d H:i:s', strtotime($startDate)) != $startDate
|| date('Y-m-d H:i:s', strtotime($endDate)) != $endDate
) {
return '日期格式不正确';
}
//$tempDate = $startDate;
$returnData = [];
$i = 0;
if ($type == 'hour') { // 查询时间范围内所有小时
$tempDate = date('Y-m-d H'.':00:00', strtotime($startDate));
$endDate = date('Y-m-d H'.':00:00', strtotime("- {$interval} hour +1 hour", strtotime($endDate)));
while (strtotime($tempDate) < strtotime($endDate)) {
$tempDate = date('Y-m-d H'.':00:00', strtotime('+' . $i . ' hour', strtotime($startDate)));
$returnData[] = $tempDate;
$i += $interval;
}
} elseif ($type == 'day') { // 查询所有日期
$tempDate = date('Y-m-d', strtotime($startDate));
$endDate = date('Y-m-d', strtotime("- {$interval} day +1 day", strtotime($endDate)));
while (strtotime($tempDate) < strtotime($endDate)) {
$tempDate = date('Y-m-d', strtotime('+' . $i . ' day', strtotime($startDate)));
$returnData[] = $tempDate;
$i += $interval;
}
} elseif ($type == 'month') { // 查询所有月份以及开始结束时间
$tempDate = date('Y-m', strtotime($startDate));
$endDate = date('Y-m', strtotime("- {$interval} month +1 month", strtotime($endDate)));
while (strtotime($tempDate) < strtotime($endDate)) {
$temp = [];
$month = strtotime('first day of +' . $i . ' month', strtotime($startDate));
$temp['name'] = date('Y-m', $month);
$temp['startDate'] = date('Y-m-01', $month);
$temp['endDate'] = date('Y-m-t', $month);
$tempDate = $temp['endDate'];
$returnData[] = $temp;
$i += $interval;
}
} elseif ($type == 'quarter') { // 查询所有季度以及开始结束时间
$tempDate = date('Y-m', strtotime($startDate));
//$endDate = date('Y-m', strtotime($endDate));
$endDate = date('Y-m', strtotime("- {$interval}*3 month +3 month", strtotime($endDate)));
while (strtotime($tempDate) < strtotime($endDate)) {
$temp = [];
$quarter = strtotime('first day of +' . $i . ' month', strtotime($startDate));
$q = ceil(date('n', $quarter) / 3);
$temp['name'] = date('Y', $quarter) . '第' . $q . '季度';
$temp['startDate'] = date('Y-m-01', mktime(0, 0, 0, $q * 3 - 3 + 1, 1, date('Y', $quarter)));
$temp['endDate'] = date('Y-m-t', mktime(23, 59, 59, $q * 3, 1, date('Y', $quarter)));
$tempDate = $temp['endDate'];
$returnData[] = $temp;
$i = $i + 3 + $interval;
}
} elseif ($type == 'year') { // 查询所有年份以及开始结束时间
$tempDate = date('Y', $startDate);
//$endDate = date('Y', $endDate);
$endDate = date('Y', strtotime("- {$interval} year +1 year", strtotime($endDate)));
while (strtotime($tempDate) < strtotime($endDate)) {
$temp = [];
$year = strtotime('+' . $i . ' year', strtotime($startDate));
$temp['name'] = date('Y', $year) . '年';
$temp['startDate'] = date('Y-01-01', $year);
$temp['endDate'] = date('Y-12-31', $year);
$tempDate = $temp['endDate'];
$returnData[] = $temp;
$i += $interval;
}
}
return $returnData;
}
}
****************************只要思想不滑坡,办法总比困难多****************************