douwo3665 2017-02-10 09:44
浏览 51
已采纳

PHP未知日期时间格式

I have the DateTime format: 2016-04-06T15:17:42.97074Z that I obtained from v5 on the twitch api.

I need to turn this into the unix timestamp for comparison using PHP.

This is currently how I'm attempting the conversion into a DateTime object: $dateTime = DateTime::createFromFormat(DateTime::ISO8601, $json["created_at"]);, I have also tried using DateTime::W3C but to no avail.

$json["created_at"] definitely contains the time to convert as echo $json["created_at"] returns the time.

  • 写回答

1条回答 默认 最新

  • dongyou8701 2017-02-10 09:50
    关注

    createFromFormat rejects the fractional seconds when asked to parse ISO8601, but you can simply construct a DateTime using that string successfully, e.g.

    $str='2016-04-06T15:17:42.97074Z';
    //this will work... 
    $dt1=new \DateTime($str);
    //but this won't...
    $dt2=\DateTime::createFromFormat(\DateTime::ATOM, $str);
    
    var_dump($dt1);
    var_dump($dt2);
    

    This will output the following in php 5.6.0 - 5.6.30, hhvm-3.15.4 - 3.17.1, 7.0.0 - 7.1.1

    object(DateTime)#1 (3) {
      ["date"]=>
      string(26) "2016-04-06 15:17:42.970740"
      ["timezone_type"]=>
      int(2)
      ["timezone"]=>
      string(1) "Z"
    }
    bool(false)
    

    See also PHP DateTime::createFromFormat doesn't parse ISO 8601 date time

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

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

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

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

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

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

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

客服 返回
顶部