码迷,mamicode.com
首页 > 其他好文 > 详细

获取两个月份之间的相差的月份

时间:2019-08-13 13:28:19      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:UNC   ret   code   递增   time   mon   array   spl   div   

   /**
     * 获取两个日期之间所有的月份
     * @param string $date1 - 起始日期 默认1970-01-01
     * @param string $date2 - 截止日期 默认1970-02-01
     * @return array
     */
    public function getMonthNum(string $date1 = ‘1970-01-01‘, string $date2 = ‘1970-02-01‘):array
    {
        $time1 = strtotime($date1); // 自动为00:00:00 时分秒
        $time2 = strtotime($date2);
        if ($time2 < $time1){
            return [];
        }
        $month = array();
        $split_date1 = explode(‘-‘,$date1);
        $month[] = $split_date1[0].‘-‘.$split_date1[1];//初始日期
        while( ($time1 = strtotime(‘+1 month‘, $time1)) <= $time2){
            $month[] = date(‘Y-m‘,$time1); // 取得递增月;
        }
        return $month;
    }

 

获取两个月份之间的相差的月份

标签:UNC   ret   code   递增   time   mon   array   spl   div   

原文地址:https://www.cnblogs.com/studyandstudy/p/11345228.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!