将时间戳转换为可读日期返回+ 40,000年

时间:2015-10-13 03:25:12

标签: php date timestamp

任何人都可以将此时间戳转换为php中的可读日期1444782970870吗?

我已尝试date('Y-m-d', '1444782970870')但返回Nov 30, 7086

结果应为Oct 14, 2015我在Unix timestamp converter

上尝试过

在你回答之前,请先试试。

1 个答案:

答案 0 :(得分:2)

你的数字太多了;你需要微秒,但PHP需要自1970年以来的秒数。

date_create_from_format('U', (substr('1444782970870', 0, 10)))->format('Y-m-d');

适合我

http://php.net/manual/en/datetime.createfromformat.php