分享PHP计算两个日期相差天数的代码


Posted in PHP onDecember 23, 2015

本文实例讲述了php计算两个日期相差天数的方法。分享给大家供大家参考。具体实现方法如下:

<?php
$date1 = date( '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 - $years * 365*60*60*24 - $months*30*60*60*24)/ (60*60*24));
printf("%d years, %d months, %d days\n", $years, $months, $days);
-------------------------------------------------------- OR
$date1 = new DateTime("2007-03-24");
$date2 = new DateTime("2009-06-26");
$interval = $date1->diff($date2);
echo "difference " . $interval->y . " years, " . $interval->m." months, ".$interval->d." days "; 
// shows the total amount of days (not divided into years, months and days like above)
echo "difference " . $interval->days . " days ";
-------------------------------------------------------- OR  
  
/**
 * Calculate differences between two dates with precise semantics. Based on PHPs DateTime::diff()
 * implementation by Derick Rethans. Ported to PHP by Emil H, 2011-05-02. No rights reserved.
*/
function _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 = array(31, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
 $days_in_month = array(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) {
    $month += 12;
    $year--;
   }
   $leapyear = $year % 400 == 0 || ($year % 100 != 0 && $year % 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 || ($year % 100 != 0 && $year % 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;
}
function _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;
}
/**
 * Accepts two unix timestamps.
 */
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", explode(" ", date("Y m d H i s", $one))));
 $b = array_combine($key, array_map("intval", explode(" ", date("Y m d H i s", $two))));
 $result = array();
 $result["y"] = $b["y"] - $a["y"];
 $result["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 '<pre>';
print_r( _date_diff( strtotime($date), time() ) );
echo '</pre>'; 
?>

希望本文所述对大家学习php程序设计有所帮助。

PHP 相关文章推荐
如何使用脚本模仿登陆过程
Nov 22 PHP
用PHP写的MySQL数据库用户认证系统代码
Mar 22 PHP
php url路由入门实例
Apr 23 PHP
PHP中遇到BOM、编码导致json_decode函数无法解析问题
Jul 02 PHP
php网站被挂木马后的修复方法总结
Nov 06 PHP
php实现事件监听与触发的方法
Nov 21 PHP
PHP内存缓存Memcached类实例
Dec 08 PHP
PHP保存带BOM文件的方法
Feb 12 PHP
PHP给文字内容中的关键字进行套红处理
Apr 12 PHP
PHP5.5新特性之yield理解与用法实例分析
Jan 11 PHP
thinkPHP3.2使用RBAC实现权限管理的实现
Aug 27 PHP
PHP高并发和大流量解决方案整理
Mar 09 PHP
php获得客户端浏览器名称及版本的方法(基于ECShop函数)
Dec 23 #PHP
PHP+MySQL实现无极限分类栏目的方法
Dec 23 #PHP
PHP多维数组转一维数组的简单实现方法
Dec 23 #PHP
详解WordPress中简码格式标签编写的基本方法
Dec 22 #PHP
WordPress中转义HTML与过滤链接的相关PHP函数使用解析
Dec 22 #PHP
WordPres对前端页面调试时的两个PHP函数使用小技巧
Dec 22 #PHP
WordPress主题中添加文章列表页页码导航的PHP代码实例
Dec 22 #PHP
You might like
在PHP中操作Excel实例代码
2010/04/29 PHP
PHP采集类Snoopy抓取图片实例
2014/06/19 PHP
php如何连接sql server
2015/10/16 PHP
Joomla调用系统自带编辑器的实现方法
2016/05/05 PHP
laravel框架中路由设置,路由参数和路由命名实例分析
2019/11/23 PHP
用jquery来定位
2007/02/20 Javascript
转一个日期输入控件,支持FF
2007/04/27 Javascript
JQuery 选择器 xpath 语法应用
2010/05/13 Javascript
jquery 圆形旋转图片滚动切换效果
2011/01/19 Javascript
利用js实现在浏览器状态栏显示访问者在本页停留的时间
2013/12/29 Javascript
jquery 选取方法都有哪些
2014/05/18 Javascript
js的image onload事件使用遇到的问题
2014/07/15 Javascript
jquery+ajax请求且带返回值的代码
2015/08/12 Javascript
javascript闭包(Closure)用法实例简析
2015/11/30 Javascript
JS遍历页面所有对象属性及实现方法
2016/08/01 Javascript
JavaScript中 this 指向问题深度解析
2017/02/21 Javascript
对 Vue-Router 进行单元测试的方法
2018/11/05 Javascript
vue 使用鼠标滚动加载数据的例子
2019/10/31 Javascript
[03:10]超级美酒第四天 fy拉比克秀 大合集
2018/06/05 DOTA
python更新列表的方法
2015/07/28 Python
Python基于list的append和pop方法实现堆栈与队列功能示例
2017/07/24 Python
对Python中DataFrame选择某列值为XX的行实例详解
2019/01/29 Python
Python同时迭代多个序列的方法
2020/07/28 Python
Python爬虫之Selenium实现关闭浏览器
2020/12/04 Python
Marc O’Polo俄罗斯官方在线商店:德国高端时尚品牌
2019/12/26 全球购物
巴西最大的运动品牌:Olympikus
2020/07/14 全球购物
岗位职责的构建方法
2014/02/01 职场文书
大学生作弊检讨书
2014/02/19 职场文书
《蒲公英》教学反思
2014/02/28 职场文书
西式结婚主持词
2014/03/14 职场文书
会计的岗位职责
2014/03/15 职场文书
预备党员公开承诺书
2014/05/28 职场文书
2014年大学生党员评议表自我评价
2014/09/20 职场文书
《丑小鸭》教学反思
2016/02/19 职场文书
受欢迎的自荐信,就这么写!
2019/04/19 职场文书
PyQt5 QThread倒计时功能的实现代码
2021/04/02 Python