码迷,mamicode.com
首页 > 编程语言 > 详细

PHP 获取两个日期之间的日期数组/月份数组

时间:2016-11-08 14:19:17      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:pre   []   highlight   rto   blog   mon   date   div   str   

function getEmptyArr($s_time,$e_time,$type){
	$tmp = array();
	if($type==‘day‘){
		$s_time = strtotime($s_time);
		$e_time = strtotime($e_time);
		while($e_time>=$s_time){
			$tmp[] = date(‘Y-m-d‘,$e_time);
			$e_time -= 86400;
		}
	}else if(‘month‘){
		$s_time = strtotime(date(‘Y-m‘,strtotime($s_time)));
		$e_time = strtotime(date(‘Y-m‘,strtotime($e_time)));
		while($e_time>=$s_time){
			$e_time_str = date(‘Y-m‘,$e_time);
			$tmp[] = $e_time_str;
			$e_time = strtotime("$e_time_str -1 month");
		}
	}
	return $tmp;
}

  

PHP 获取两个日期之间的日期数组/月份数组

标签:pre   []   highlight   rto   blog   mon   date   div   str   

原文地址:http://www.cnblogs.com/lzs-888/p/6042526.html

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