PHP,我需要在php日期功能中使用此时间戳记

时间:2019-04-04 05:52:36

标签: php

我正在尝试在php 2019-02-01T08:21:33+0000中使用此时间戳。

date("Y-m-d") 

我需要在功能日期中添加什么才能创建此时间戳。

2 个答案:

答案 0 :(得分:3)

浏览文档有助于:https://www.php.net/manual/en/function.date.php

解决方法是:

date('c')

(带有冒号)

答案 1 :(得分:0)

date('c') // c - The ISO-8601 date format.