php 计算两个日期相隔多少年,多少月,多少天

如题所述

1、首先计算2020-02-10和2020-02-01日间隔的天数。使用strtotime:<?php $days = (strtotime('2020-02-10') - strtotime('2020-02-01'))/86400; echo $days;。

2、运行之后如下图,显示间隔天数。

3、还可以使用new DateTime  + diff:$date1 = new DateTime('2020-02-01');$date2 = new DateTime('2020-02-10');$cha = $date1->diff($date2);echo $cha->format('%R%a days');。

4、使用date_create + date_diff。

5、都可以计算出间隔天数。

温馨提示:内容为网友见解,仅供参考
第1个回答  2016-11-14
function getMonthNum($date1,$date2){
$date1_stamp=strtotime($date1);
$date2_stamp=strtotime($date2);
list($date_1['y'],$date_1['m'])=explode("-",date('Y-m',$date1_stamp));
list($date_2['y'],$date_2['m'])=explode("-",date('Y-m',$date2_stamp));
return abs($date_1['y']-$date_2['y'])*12 +$date_2['m']-$date_1['m'];
}

echo getMonthNum("2013-02-01","2014-01-01");

echo getMonthNum("20130201","20140101");

echo getMonthNum("201302","201401");

date_default_timezone_set("PRC");//设置中国时区

$t1 = '2015-6-26';//你自己设置一个开始时间
$t2 = date('Y-m-d');//获取当前时间, 格式和$t1一致

$t = strtotime($t2) - strtotime($t1);//拿当前时间-开始时间 = 相差时间
$t = $t/(3600*24);//此时间单位为 天

if($t >= 60)//对比当你设置了60天, 那么当大于或等于60天时提示
{
die("时间已到期, 请续费");
}
else
{
die("剩余天数:".(60 - $t));
}本回答被网友采纳
第2个回答  2016-11-14

/* 
*function:计算两个日期相隔多少年,多少月,多少天 
*param string $date1[格式如:2011-11-5] 
*param string $date2[格式如:2012-12-01] 
*return array array('年','月','日'); 
*/  
function diffDate($date1,$date2){  
    if(strtotime($date1)>strtotime($date2)){  
        $tmp=$date2;  
        $date2=$date1;  
        $date1=$tmp;  
    }  
    list($Y1,$m1,$d1)=explode('-',$date1);  
    list($Y2,$m2,$d2)=explode('-',$date2);  
    $Y=$Y2-$Y1;  
    $m=$m2-$m1;  
    $d=$d2-$d1;  
    if($d<0){  
        $d+=(int)date('t',strtotime("-1 month $date2"));  
        $m--;  
    }  
    if($m<0){  
        $m+=12;  
        $y--;  
    }  
    return array('year'=>$Y,'month'=>$m,'day'=>$d);  
}  





///调用方法:
echo '<pre>';print_r(diffDate('2014-12-03','2000-12-01'));




//结果:
/*
Array
(
    [year] => 14
    [month] => 0
    [day] => 2
)

*/

相似回答