duanhuhong5255 2013-12-10 03:55
浏览 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条)

报告相同问题?

悬赏问题

  • ¥15 opencv 无法读取视频
  • ¥15 用matlab 实现通信仿真
  • ¥15 按键修改电子时钟,C51单片机
  • ¥60 Java中实现如何实现张量类,并用于图像处理(不运用其他科学计算库和图像处理库))
  • ¥20 5037端口被adb自己占了
  • ¥15 python:excel数据写入多个对应word文档
  • ¥60 全一数分解素因子和素数循环节位数
  • ¥15 ffmpeg如何安装到虚拟环境
  • ¥188 寻找能做王者评分提取的
  • ¥15 matlab用simulink求解一个二阶微分方程,要求截图