PHP中查询指定时间范围内的所有日期,月份,季度,年份

Wesley13
• 阅读 594
/**
 * 查询指定时间范围内的所有日期,月份,季度,年份
 *
 * @param $startDate   指定开始时间,Y-m-d格式
 * @param $endDate     指定结束时间,Y-m-d格式
 * @param $type        类型,day 天,month 月份,quarter 季度,year 年份
 * @return array
 */
function getDateByInterval($startDate, $endDate, $type)
{
    if (date('Y-m-d', strtotime($startDate)) != $startDate || date('Y-m-d', strtotime($endDate)) != $endDate) {
        return '日期格式不正确';
    }
 
    $tempDate = $startDate;
    $returnData = [];
    $i = 0;
    if ($type == 'day') {    // 查询所有日期
        while (strtotime($tempDate) < strtotime($endDate)) {
            $tempDate = date('Y-m-d', strtotime('+' . $i . ' day', strtotime($startDate)));
            $returnData[] = $tempDate;
            $i++;
        }
    } elseif ($type == 'month') {    // 查询所有月份以及开始结束时间
        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++;
        }
    } elseif ($type == 'quarter') {    // 查询所有季度以及开始结束时间
        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;
        }
    } elseif ($type == 'year') {    // 查询所有年份以及开始结束时间
        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++;
        }
    }
    return $returnData;
}
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
Karen110 Karen110
3年前
一篇文章带你了解JavaScript日期
日期对象允许您使用日期(年、月、日、小时、分钟、秒和毫秒)。一、JavaScript的日期格式一个JavaScript日期可以写为一个字符串:ThuFeb02201909:59:51GMT0800(中国标准时间)或者是一个数字:1486000791164写数字的日期,指定的毫秒数自1970年1月1日00:00:00到现在。1\.显示日期使用
待兔 待兔
4个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Wesley13 Wesley13
3年前
java常用类(2)
三、时间处理相关类Date类:计算机世界把1970年1月1号定为基准时间,每个度量单位是毫秒(1秒的千分之一),用long类型的变量表示时间。Date分配Date对象并初始化对象,以表示自从标准基准时间(称为“历元”(epoch),即1970年1月1日08:00:00GMT)以来的指定毫秒数。示例:packagecn.tanjian
Stella981 Stella981
3年前
Python之time模块的时间戳、时间字符串格式化与转换
Python处理时间和时间戳的内置模块就有time,和datetime两个,本文先说time模块。关于时间戳的几个概念时间戳,根据1970年1月1日00:00:00开始按秒计算的偏移量。时间元组(struct_time),包含9个元素。 time.struct_time(tm_y
Stella981 Stella981
3年前
HIVE 时间操作函数
日期函数UNIX时间戳转日期函数: from\_unixtime语法:   from\_unixtime(bigint unixtime\, string format\)返回值: string说明: 转化UNIX时间戳(从19700101 00:00:00 UTC到指定时间的秒数)到当前时区的时间格式举例:hive   selec
Wesley13 Wesley13
3年前
PHP创建多级树型结构
<!lang:php<?php$areaarray(array('id'1,'pid'0,'name''中国'),array('id'5,'pid'0,'name''美国'),array('id'2,'pid'1,'name''吉林'),array('id'4,'pid'2,'n
Wesley13 Wesley13
3年前
Java日期时间API系列23
  有时候,往往需要统计某个时间区间的销量等问题,这就需要准确的起始时间,获取准确开始时间00:00:00,获取准确结束时间23:59:59。下面增加了一一些方法,获取当天起始时间,昨天起始时间,当前月第一天开始时间,当前月最后一天结束时间,上个月第一天开始时间,上个月最后一天结束时间,某个指定月的起始结束时间等等。其中月份最后一天往往因为月份不同和
Wesley13 Wesley13
3年前
PHP中的NOW()函数
是否有一个PHP函数以与MySQL函数NOW()相同的格式返回日期和时间?我知道如何使用date()做到这一点,但是我问是否有一个仅用于此的函数。例如,返回:2009120100:00:001楼使用此功能:functiongetDatetimeNow(){
Python进阶者 Python进阶者
10个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这