任何人都可以将此时间戳转换为php中的可读日期1444782970870
吗?
我已尝试date('Y-m-d', '1444782970870')
但返回Nov 30, 7086
结果应为Oct 14, 2015
我在Unix timestamp converter
在你回答之前,请先试试。
答案 0 :(得分:2)
你的数字太多了;你需要微秒,但PHP需要自1970年以来的秒数。
date_create_from_format('U', (substr('1444782970870', 0, 10)))->format('Y-m-d');
适合我