程序员 - PHP计算出两个年份的相差的月份,注意我只要月份,比如 "2013-07-03" "2014-03-12"

WBOY
풀어 주다: 2016-06-06 20:46:41
원래의
1093명이 탐색했습니다.

PHP计算出两个年份的相差的月份,注意我只要月份,比如 "2013-07-03" "2014-03-12",他们相差的8个月,那么你的函数中必须返回8,注意代码冗余

回复内容:

PHP计算出两个年份的相差的月份,注意我只要月份,比如 "2013-07-03" "2014-03-12",他们相差的8个月,那么你的函数中必须返回8,注意代码冗余

上一个回答没考虑年份差(不过题主强调了只需要月份),这里补上 @ 2014-03-27 10:06:25:

<code class="lang-php">$time_begin   = strtotime("2012-07-03");
$time_end     = strtotime("2014-03-12");
$time_differ  = $time_end - $time_begin;
$year_differ  = date('Y', $time_differ);
$month_differ = date('m', $time_differ);
$result       = 12*intval($year_differ-1970)+intval($month_differ)-1;
</code>
로그인 후 복사

<code class="lang-php">$time_begin   = strtotime("2013-07-03");
$time_end     = strtotime("2014-03-12");
$time_differ  = $time_end - $time_begin;
$month_differ = date('m', $time_differ);
$result       = intval($month_differ)-1;
</code>
로그인 후 복사

亲测可行。

<code>    $d1 = new DateTime('2013-07-03');
    $d2 = new DateTime('2014-03-12');
    $diff=$d2->diff($d1);
    echo ($diff->y*12)+$diff->m;
</code>
로그인 후 복사
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!