获取下个月的月份

Posted 谢凌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取下个月的月份相关的知识,希望对你有一定的参考价值。

//获取下个月的月份  
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;  
} 

  

以上是关于获取下个月的月份的主要内容,如果未能解决你的问题,请参考以下文章

获取下个月的今天

用PHP获取下个月的最后一天?

将日期取整到下个月的第一天

帆软报表条件查询一张表查询二月份的数据,另一张表根据第一张表的查询条件,查新下个月的数据

在Python中获取下个月的最后一天[关闭]

小程序如何获取下个月的起始时间与结束时间