我在php中有以下DateTime对象:
[start1] => DateTime Object (
[date] => 2012-05-21 12:59:59
[timezone_type] => 3
[timezone] => Europe/Berlin
)
[end1] => DateTime Object (
[date] => 2012-05-21 22:36:00
[timezone_type] => 3
[timezone] => Europe/Berlin
)
和结果:
$time->end1->diff($time->start1
是:
DateInterval Object ( [y] => 0 [m] => 0 [d] => 0 [h] => 12 [i] => 36 [s] => 2 [invert] => 1 [days] => 0 )
为什么我会得到12小时而不是9小时?
答案 0 :(得分:2)
我找到了解决方案......在做diff之前,我在start1对象上做了一个sub()。现在我已经看到了为什么我的结果是假的......这是答案,但我真的不知道为什么会这样。 http://www.php.net/manual/en/datetime.sub.php#101175
答案 1 :(得分:0)
我知道这实际上可能是你创建两个DateTime对象所做的事情,但我想我会把对我来说有用的东西看看是否会帮助你。
创建我做的两个对象:
$start1 = new DateTime('2012-05-21 12:59:59', new DateTimeZone('Europe/Berlin'));
$end1 = new DateTime('2012-05-21 22:36:00', new DateTimeZone('Europe/Berlin'));
打印出两个对象和差异:
print_r($end1->diff($start1));
我得到了:
DateTime Object
(
[date] => 2012-05-21 12:59:59
[timezone_type] => 3
[timezone] => Europe/Berlin
)
DateTime Object
(
[date] => 2012-05-21 22:36:00
[timezone_type] => 3
[timezone] => Europe/Berlin
)
DateInterval Object
(
[y] => 0
[m] => 0
[d] => 0
[h] => 9
[i] => 36
[s] => 1
[invert] => 1
[days] => 0
)
我看到start1和end1对象的两个输出都是相同的,但我的差异反映了正确的9小时差异。也许有关于如何在PHP版本中创建DateTime对象的问题?