码迷,mamicode.com
首页 > Web开发 > 详细

php 获取当前24个月月份

时间:2015-12-14 18:48:34      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

    // 获取二十四个月份
     function allMonth($start,$end){    
         $startTime = strtotime($start.‘01‘);
         $monthArr = array();
         $i=0;
         while (1) {
             $nowTime = strtotime(‘+‘.$i.‘ month‘,$startTime);
             $month = date(‘Ym‘,$nowTime);
             if ($month>$end) {
                 break;
             }else{
                 $monthArr[]= $month;
             }
             $i++;
         }
         return $monthArr;
     }
     $end = date(‘Ym‘,time());
     $start = date(‘Ym‘,strtotime(‘-24 month‘,strtotime($end)));

     $result = allMonth($start,$end);
     echo ‘<pre>‘;
     print_r($result);

 

php 获取当前24个月月份

标签:

原文地址:http://www.cnblogs.com/xuedong/p/5045621.html

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