如何检查当前日期与数据库中的日期之间的差异是以小时还是天为单位。

7 浏览
0 Comments

如何检查当前日期与数据库中的日期之间的差异是以小时还是天为单位。

我有两个日期,格式如下:

开始日期:2007年3月24日
结束日期:2009年6月26日

现在我需要以以下形式找出它们之间的差异:

2年3个月2天

我该如何在PHP中实现这个功能?

0
0 Comments

如何检查当前日期与数据库中的日期之间的差异是小时还是天?

问题的原因:

- 该问题是由于需要比较当前日期与数据库中的日期之间的差异,并确定差异是以小时还是天为单位。

解决方法:

- 使用strtotime()函数将两个日期转换为Unix时间,并计算它们之间的秒数差异。

- 根据这个差异,可以很容易地计算出不同的时间段。

- 使用floor()函数计算出年、月和天的差异。

- 使用printf()函数将年、月和天的差异输出。

以下是解决该问题的代码示例:

$date1 = "2007-03-24";
$date2 = "2009-06-26";
$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);

请注意,该代码是针对旧版本的PHP(PHP < 5.3)的解决方案。如果您使用的是PHP 5.3或更高版本,建议使用更现代的解决方案。

此外,还有一些评论中提到的问题,例如该代码只是一个近似值,而不是精确的差异。如果您确实需要精确的差异,可以使用下面的代码(适用于PHP 4):

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;
}
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 = "1986-11-10 19:37:22";
print_r(_date_diff(strtotime($date), time()));
print_r(_date_diff(time(), strtotime($date)));

0
0 Comments

如何检查当前日期和数据库中的日期之间的差异是小时还是天?

首先,建议使用DateTime和DateInterval对象。

以下是一个示例代码,展示了如何使用DateTime对象和diff()方法来计算两个日期之间的差异,并输出结果:

$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 "; 
// 显示总天数(没有像上面那样按年、月和天分割)
echo "difference " . $interval->days . " days ";

上面的代码使用了DateTime::diff()方法来计算两个日期之间的差异,并将结果存储在一个DateInterval对象中。然后可以使用DateInterval对象的属性来获取差异的年、月、日和总天数。

此外,还可以使用DateTime对象之间的比较运算符来比较日期。例如:

$date1 = new DateTime("now");
$date2 = new DateTime("tomorrow");
var_dump($date1 == $date2); // bool(false)
var_dump($date1 < $date2);  // bool(true)
var_dump($date1 > $date2);  // bool(false)

上面的代码演示了如何使用比较运算符来比较两个DateTime对象的大小关系。

除了上述方法外,DateTime对象还可以正确处理闰年和时区,并且有一本关于日期和时间编程的好书可供参考。

如果需要获取两个DateTime对象之间的总秒数,可以使用以下方法:

$seconds = $date2->format('U') - $date1->format('U');

需要注意的是,在某些PHP版本上,DateInterval对象的days属性可能存在错误(始终为6015),特别是在Windows平台上。可以参考相关bug报告中的评论来修复或绕过这个问题。

通过使用DateTime和DateInterval对象,可以方便地计算当前日期和数据库中的日期之间的差异,并根据需要获取差异的年、月、日和总天数。此外,还可以使用DateTime对象之间的比较运算符来比较日期的大小关系。同时,DateTime对象还能够正确处理闰年和时区的问题。在使用过程中,可能会遇到一些bug,可以参考相关的bug报告来修复或绕过这些问题。

0
0 Comments

如何检查当前日期与数据库中的日期之间的差异是小时还是天数?

使用PHP的DateTime和DateInterval对象可以解决这个问题。每个日期都封装在DateTime对象中,然后可以计算两者之间的差异:

$first_date = new DateTime("2012-11-30 17:03:30");

$second_date = new DateTime("2012-12-21 00:00:00");

DateTime对象将接受任何strtotime()支持的格式。如果需要更具体的日期格式,可以使用DateTime::createFromFormat()来创建DateTime对象。

在实例化了两个对象之后,可以使用DateTime::diff()将一个对象减去另一个对象。

$difference = $first_date->diff($second_date);

$difference现在包含一个DateInterval对象,其中包含差异信息。使用var_dump()打印出来的格式如下:

object(DateInterval)

public 'y' => int 0

public 'm' => int 0

public 'd' => int 20

public 'h' => int 6

public 'i' => int 56

public 's' => int 30

public 'invert' => int 0

public 'days' => int 20

为了格式化DateInterval对象,我们需要检查每个值,并在其为0时排除它:

function format_interval(DateInterval $interval) {

$result = "";

if ($interval->y) { $result .= $interval->format("%y years "); }

if ($interval->m) { $result .= $interval->format("%m months "); }

if ($interval->d) { $result .= $interval->format("%d days "); }

if ($interval->h) { $result .= $interval->format("%h hours "); }

if ($interval->i) { $result .= $interval->format("%i minutes "); }

if ($interval->s) { $result .= $interval->format("%s seconds "); }

return $result;

}

现在只需要在$difference的DateInterval对象上调用我们的函数:

echo format_interval($difference);

我们会得到正确的结果:

20 days 6 hours 56 minutes 30 seconds

完整的代码如下:

function format_interval(DateInterval $interval) {

$result = "";

if ($interval->y) { $result .= $interval->format("%y years "); }

if ($interval->m) { $result .= $interval->format("%m months "); }

if ($interval->d) { $result .= $interval->format("%d days "); }

if ($interval->h) { $result .= $interval->format("%h hours "); }

if ($interval->i) { $result .= $interval->format("%i minutes "); }

if ($interval->s) { $result .= $interval->format("%s seconds "); }

return $result;

}

$first_date = new DateTime("2012-11-30 17:03:30");

$second_date = new DateTime("2012-12-21 00:00:00");

$difference = $first_date->diff($second_date);

echo format_interval($difference);

注意,DateTime()不是一个函数,而是一个对象,自PHP 5.2起可用。请确保您的服务器支持它。

DateTime::Diff需要PHP 5.3.0以上的版本。

如果交换first_date和second_date,我们会得到相同的结果吗?为什么不是0天0小时0分钟0秒,或者只有0?例如:2012-11-30 17:03:30 - 2012-12-21 00:00:00和2012-12-21 00:00:00 - 2012-11-30 17:03:30得到的结果是一样的。

因为diff给出的是两个时间之间的差异。不管哪个日期较晚,差异都不为0。

这是一个非常好的答案,因为它提供了一个清晰的函数,可以从代码库中的任何地方调用,而不需要大量的时间计算。其他答案允许您在运行时丢弃了解决问题的打印结果,而不是解决问题本身...我添加的唯一元素(其他帖子几乎没有涵盖这个)是如果$interval的元素大于1,则进行元素的复数形式。

我确实使用了这种方法,但是遇到了一个大问题,如果你恰好有59天(30+29),那么它会变成"2个月",因为它把第二个月计算成了二月份,这毫无意义,不知道如何解决。

啊,不好意思,我的问题是我提供了一个持续时间,而不是两个日期。

0