duanhuhong5255 2013-12-10 03:55 采纳率: 0%
浏览 174
已采纳

PHP DateTime :: createFromFormat不使用带时区的时间格式

I want to check if submitted datetime from user is the same as my datetime format with

DateTime::createFromFormat($format, $date)

It was working fine until I changed my time format from Y-m-d H:i:s to Y-m-d\TH:i:s.ZP I want to get timedate like this 2011-11-09T17:11:57.430+05:00 What format should I give to my function? Is the format I used wrong?

  • 写回答

2条回答 默认 最新

  • douao8204 2013-12-10 11:54
    关注

    You are almost there. You have used 'Z' where you should have a 'u' for microseconds, so your code should look something like this:-

    $dateStr = '2011-11-09T17:11:57.430+05:00';
    $date = \DateTime::createFromFormat('Y-m-d\TH:i:s.uP', $dateStr);
    var_dump($date);
    

    Output:-

    object(DateTime)[1]
      public 'date' => string '2011-11-09 17:11:57' (length=19)
      public 'timezone_type' => int 1
      public 'timezone' => string '+05:00' (length=6)
    

    The format strings accepted by DateTime::createFromFormat() are the same as those accepted by date().

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?