duanlinghe8417 2014-03-10 10:27
浏览 74
已采纳

使用DateTime diff的DateInterval错误

I'm comparing two DateTime :

//Get the current DateTime
$date_now = new DateTime;
var_dump($date_now); // 2014-03-10 19:04:29

// I need to subtract 12 hours (I'm using $date_past to fetch $db_date in a request)
$date_past = $date_now->sub(new DateInterval("PT12H"));

// Get the DateTime from $db_date just fetched in database
$alert_date = new DateTime($db_date);
var_dump($alert_date); // 2014-03-10 17:04:00 in my test

// Get the difference
$diff = $alert_date->diff($date_now);
var_dump($diff->format("%H:%I:%S")); //09:59:31

So I get 09:59:31 and also $diff->invert == 1 which means that it's a negative value.

I saw this issue : php datetime->diff is calcualting wrong amount of hours (3 too much) and I think it's similar problem but I can't find a solution to keep using ->sub(). Any ideas ?

If you think it could be a TimeZone problem, I checked all my DateTime and they all have a TimeZone set to "Europe/Berlin", so I don't think it come from here.

Thank you !

  • 写回答

1条回答 默认 最新

  • doubi5520 2014-03-10 10:35
    关注

    The problem is that when you assign an object to a variable, it is assigned by reference. So when you do:

    $date_past = $date_now->sub(new DateInterval("PT12H"));
    

    The variables $date_past and $date_now both point to exactly the same reference and when you modify one, you modify both. You will notice this if you simply echo out the variables:

    $date_now = new DateTime;
    $date_past = $date_now->sub(new DateInterval("PT12H"));
    
    echo $date_now->format('c'); // 2014-03-10T00:38:56-06:00
    echo $date_past->format('c'); // 2014-03-10T00:38:56-06:00
    

    Notice how they both print exactly the same thing. Normally what you want to do is use clone:

    $date_past = clone $date_now;
    $date_past->sub(new DateInterval("PT12H"));
    
    echo $date_now->format('c'); // 2014-03-10T12:41:20-06:00
    echo $date_past->format('c'); // 2014-03-10T00:41:20-06:00
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部