在PHP中计算两个日期的持续时间
示例:
开始日期:01-01-2016
结束日期:31-01-2016
我得到答案是30天,但我希望结果是1个月
更多例子:
01-01-2016至31-01-2016 = 1个月
01-02-2016至29-02-2016 = 1个月
01-03-2016至31-03-2016 = 1个月
显示在..
答案 0 :(得分:0)
<?php
$date1 = '2000-01-20';
$date2 = '2000-02-20';
$ts1 = strtotime($date1);
$ts2 = strtotime($date2);
$year1 = date('Y', $ts1);
$year2 = date('Y', $ts2);
$month1 = date('m', $ts1);
$month2 = date('m', $ts2);
echo $diff = (($year2 - $year1) * 12) + ($month2 - $month1);
?>
我认为这会对你有帮助。
答案 1 :(得分:0)
这是我尝试过的。
查找第一个月的第一天和最后一天,并将它们与给定日期进行比较。如果它们匹配则打印“1个月”,否则它会打印“n天”之类的天数。
$date1 = "2016-02-01";
$date2 = "2016-02-29";
$output = "";
if ($date1 == date("Y-m-01", strtotime($date1)) && $date2 == date("Y-m-t", strtotime($date1))) {
$output = "1 month";
} else {
$output = ((strtotime($date2) - strtotime($date1)) / 86400 + 1) . " days";
}
echo $output;
答案 2 :(得分:0)
class shahjadclass {
public function getduration($postdate) {
/* $postdate is the date where the post was created */
$assigned_time = date("Y-m-d h:i:sa");
$d1 = new DateTime($assigned_time);
$d2 = new DateTime($postdate);
$interval = $d2->diff($d1);
$datestring='';
if($interval->y>0){
$datestring=$interval->format('%y Years ago') ;
}elseif ($interval->m>0) {
$datestring=$interval->format('%m Months ago') ;
}elseif ($interval->d>0) {
$datestring=$interval->format('%d Days ago') ;
}elseif ($interval->h>0) {
$datestring=$interval->format('%h Hours ago') ;
}elseif($interval->i>0){
$datestring=$interval->format('%i Min ago') ;
}else{
$datestring=$interval->format('%s Sec ago') ;
}
return $datestring;
}
}
**
用法
require_once('shahjadclass.php');
$myfunctions = new shahjadclass();
获取输出
$datestring=$myfunctions->getduration('createdon');
**