我如何将uplastedat转换为迄今为止和时间



我从 Youtube API出版了at的结果,但是我想使用php将其转换为日期和时间?

在文本上发表:2018-08-14T14:30:02.000Z

正如格雷所说,您可以使用strtotime((和date((格式化日期。

$googleTime = '2018-08-14T14:30:02.000Z';
$strtotimeFormat = strtotime($googleTime);
$dateTimeFormat = date('Y-m-d H:i:s', $strtotimeFormat)
var_dump($dateTimeFormat)

输出:'2018-08-14 14:30:02'

您可以将其传递给strtotime((或DateTime constructor

>>> strtotime('2018-08-14T14:30:02.000Z')
=> 1534257002
>>> new DateTime('2018-08-14T14:30:02.000Z')
=> DateTime @1534257002 {#3353
     date: 2018-08-14 14:30:02.0 +00:00,
   }

相关内容

  • 没有找到相关文章

最新更新