PHP - 格式化日期

时间:2013-06-02 23:29:01

标签: php string date compare seconds

我将日期存储到字符串变量中:Sun Jun 02 08:54:12 EDT 2013。如何将其转换为日期变量以比较当前日期和提供的日期之间的时差。谢谢!

1 个答案:

答案 0 :(得分:5)

使用DateTime类将当前日期与时间字符串进行比较。获得DateTime个对象后,您可以使用DateTime::diff()方法轻松获得差异。它将返回一个DateInterval对象,可以使用format()方法打印。

$dt = new DateTime('Sun Jun 02 08:54:12');
$now = new DateTime();

if($now > $dt) {
    $difference = $now->diff($dt);
    echo $difference->format('The time is %H hours %I minutes %S seconds in the past');
} else if ($now < $dt) {
    $difference = $dt->diff($now);
    echo $difference->format('The time is %H hours %I minutes %S seconds in the future');
} else {
    echo 'the time is now';
}

注意:当然,您必须以一种显示年,月和日之差的方式扩展输出。在示例中我没有这样做,因为我很懒...因为字符串对于示例来说太长了...;)