Home >Backend Development >PHP Tutorial >How to determine the number of months between two dates in php, php date_PHP tutorial

How to determine the number of months between two dates in php, php date_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 09:49:471155browse

How to determine the number of months between two dates in php, php date

The example in this article describes how to determine the number of months between two dates in php. Share it with everyone for your reference. The specific implementation method is as follows:

/**
 * @author injection(injection.mail@gmail.com)
* @var date1日期1
* @var date2 日期2
* @var tags 年月日之间的分隔符标记,默认为'-' 
* @return 相差的月份数量
* @example:
$date1 = "2003-08-11";
$date2 = "2008-11-06";
$monthNum = getMonthNum( $date1 , $date2 );
echo $monthNum;
*/
function getMonthNum( $date1, $date2, $tags='-' ){
 $date1 = explode($tags,$date1);
 $date2 = explode($tags,$date2);
 return abs($date1[0] - $date2[0]) * 12 + abs($date1[1] - $date2[1]);
}

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1019055.htmlTechArticlephp method to determine how many months the difference is between two dates, php date This article tells an example of how php determines the difference between two dates How many months are the difference between dates. Share it with everyone for your reference. ...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn