1

我有一个函数来计算两个日期之间的差异。

function getDateDifference($to, $from, $in) {
$diff = abs($to - $from);

$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));
if ($in == "days") {
    return $days;
} else if ($in == "months") {
    return $months;
} else if ($in == "years") {
    return $years;
}

}

对于参数,我首先将两个日期转换为秒,如下所示,

checkin = '2012-07-26';
checkout = '2012-07-27';
check_in_date = strtotime(checkin);
check_out_date = strtotime(checkout);

当涉及不到一个月的差异时,我得到了正确的差异。但是如果差值超过一个月,我总是把差值设为 1。有人能告诉我问题出在哪里。

4

2 回答 2

2

目前,一个月总是30 * 60 * 60 * 24秒,也就是 30 天。

你的问题是我们在七月,有31天,而不是30天。你必须注意每个月的天数。

于 2012-07-26T10:05:25.570 回答
1

您可以使用 DateTime 类。 http://php.net/manual/en/datetime.diff.php

 $checkin = new DateTime("2012-07-23");
 $checkout = new DateTime("2012-07-27");
 $difference = $checkin->diff($checkout);
 echo "differrence = " . $difference->format('%R%a days');
于 2012-07-26T10:19:15.267 回答