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

获取下个月的月份

时间:2018-01-20 16:59:52      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:gpo   post   获取   timestamp   pre   function   pos   last   next   

//获取下个月的月份  
public function getNextMonthDays($date){
	$timestamp=strtotime($date);  
	$arr=getdate($timestamp);  
	if($arr[‘mon‘] == 12){  
		$year=$arr[‘year‘] +1;  
		$month=$arr[‘mon‘] -11; 
		$firstday=$year.‘-0‘.$month.‘-01‘;  
		$lastday=date(‘Y-m‘,strtotime("$firstday +1 month -1 day"));  
	}else{  
		$firstday=date(‘Y-m‘,strtotime(date(‘Y‘,$timestamp).‘-‘.(date(‘m‘,$timestamp)+1).‘-01‘));  
		$lastday=date(‘Y-m‘,strtotime("$firstday +1 month -1 day"));
	}  
	return $lastday;  
} 

  

获取下个月的月份

标签:gpo   post   获取   timestamp   pre   function   pos   last   next   

原文地址:https://www.cnblogs.com/xieling2100-fei/p/8321132.html

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