- $date1 = 날짜( 'Y-m-d' );
- $date2 = "2015-12-04";
- $diff = ABS (strtotime($date2) - strtotime($date1));
- $years = Floor($diff / (365*60*60*24));
- $months = Floor(($diff - $years * 365*60*60*24) / (30*60*60*24));
- $days = Floor(($diff - $년 * 365*60*60*24 - $개월*30*60 *60*24)/ (60*60*24));
- printf("%d년, %d개월, %d일n", $년, $개월, $일);
- --- ------------------------------------- --- 또는
- $date1 = new DateTime("2007-03-24");
- $date2 = new DateTime("2009-06-26");
- $interval = $date1-> ;diff($date2);
- echo "차이" . $간격->y . "년," . $interval->m." 개월, ".$interval->d." 일 ";
- // 총 일수를 표시합니다(위와 같이 연, 월, 일로 구분되지 않음)
- echo "difference" . $간격->일 . "일";
- ------------------------------- ------------- 또는
-
-
- /**
- * 정확한 의미를 사용하여 두 날짜 간의 차이를 계산합니다. PHP DateTime::diff()
- * Derick Rethans의 구현을 기반으로 합니다. Emil H, 2011-05-02에 의해 PHP로 포팅되었습니다. 권리 보유 없음.
- *
- * 원본 코드는 여기를 참조하세요.
- * http://svn.php.net/viewvc/php/php-src/trunk/ext/date/lib/tm2unixtime. c?revision=302890&view=markup
- * http://svn.php.net/viewvc/php/php-src/trunk/ext/date/lib/interval.c?revision=298973&view=markup
- */
- 함수 _date_range_limit($start, $end, $adj, $a, $ b, $result)
- {
- if ($result[$a] < $start) {
- $result[$b] -= intval(($start - $result[$a] - 1) / $adj) 1;
- $result[$a] = $adj * intval(($start - $result[$a] - 1) / $adj 1);
- }
- if ($result[$a] >= $end) {
- $result[$b] = intval($result[$a] / $adj);
- $result[$a] -= $adj * intval($result[$a] / $adj);
- }
- return $result;
- }
- function _date_range_limit_days($base, $result)
- {
- $days_in_month_leap = 배열(31, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
- $days_in_month = 배열(31, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
- _date_range_limit(1, 13, 12, "m", "y", &$base);
- $year = $base["y "];
- $month = $base["m"];
- if (!$result["invert"]) {
- while ($result["d"] < 0) {
- $month--;
- if ($month < 1) {
- $월 = 12;
- $연--;
- }
- $leapyear = $연 % 400 == 0 || ($연도 % 100 != 0 && $연도 % 4 == 0);
- $days = $leapyear ? $days_in_month_leap[$month] : $days_in_month[$month];
- $result["d"] = $days;
- $result["m"]--;
- }
- } else {
- while ($result["d"] < 0) {
- $leapyear = $year % 400 == 0 || ($연도 % 100 != 0 && $연도 % 4 == 0);
- $days = $leapyear ? $days_in_month_leap[$month] : $days_in_month[$month];
- $result["d"] = $days;
- $result["m"]--;
- $month ;
- if ($month > 12) {
- $month -= 12;
- $year ;
- }
- }
- }
- return $result;
- }
- 함수 _date_normalize($base, $result)
- {
- $result = _date_range_limit(0, 60, 60, "s", "i", $result);
- $result = _date_range_limit(0, 60 , 60, "i", "h", $result);
- $result = _date_range_limit(0, 24, 24, "h", "d", $result);
- $result = _date_range_limit(0 , 12, 12, "m", "y", $result);
- $result = _date_range_limit_days(&$base, &$result);
- $result = _date_range_limit(0, 12, 12, "m ", "y", $result);
- return $result;
- }
- /**
- * 두 개의 Unix 타임스탬프를 허용합니다.
- */
- function _date_diff($one, $two)
- {
- $invert = false;
- if ($one > $two) {
- list($one, $two) = array($two, $one);
- $invert = true;
- }
- $key = array("y", "m", "d", "h", "i", "s");
- $a = array_combine($key, array_map("intval", 폭발(" ", date("Y m d H i s", $one))));
- $b = array_combine($key, array_map("intval",explod(" ", date("Y m d H i s") ", $two))));
- $result = array();
- $result["y"] = $b["y"] - $a["y"];
- $ 결과["m"] = $b["m"] - $a["m"];
- $result["d"] = $b["d"] - $a["d"];
- $result["h"] = $b["h"] - $a["h"];
- $result["i"] = $b["i"] - $a[" i"];
- $result["s"] = $b["s"] - $a["s"];
- $result["invert"] = $invert ? 1 : 0;
- $result["days"] = intval(abs(($one - $two)/86400));
- if ($invert) {
- _date_normalize(&$a, & $result);
- } else {
- _date_normalize(&$b, &$result);
- }
- return $result;
- }
- $date = "2014-12- 04 19:37:22";
- echo '
';</li>
<li>print_r( _date_diff( strtotime($date), time() ) );</li>
<li>echo ' ';
- ?>
复代码
|