首页 > 其他 > 详细

取出两个时间戳中间的天数

时间:2014-06-24 13:54:28      阅读:348      评论:0      收藏:0      [点我收藏+]

 

 

 

 取出两个时间戳中间的天数

 

      $event_start_time = $result[0][‘event_start_time‘];
        $event_end_time   = $result[0][‘event_end_time‘];
        $event_end_time_max = strtotime(date(‘Y-m-d‘,$event_end_time))+3600*24;
        //取出活动所在的几天
        for ($i=$event_start_time;$i<$event_end_time_max;$i=$i+3600*24){
            $date_arr[]=date(‘Y-m-d‘,$i);
        }

 

 

 

 

 

 

 

 

 

 

 

取出两个时间戳中间的天数,布布扣,bubuko.com

取出两个时间戳中间的天数

原文:http://www.cnblogs.com/wangtongphp/p/3805050.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!