在 PHP 中转换时间戳格式
Convert timestamp format in PHP
我收到来自 api 的回复,其中有一个数据字段 "created_time":1568717579,然后我将其转换为 Ydm H:i:s 格式以保存到我的数据库中 [=15] =], 问题是 1970 年总是 returns.
echo date('Y-m-d H:i:s', 1568717579/1000);die;
// always returns year 1970
不需要除以1000,时间戳为Epoch(Unix时间)格式:https://en.wikipedia.org/wiki/Unix_time
简单
echo date('Y-m-d H:i:s', 1568717579);
// Utc current time seconds from 00:00:00 UTC on 1 January 1970
echo time();
// Current time date
echo date('Y-m-d H:i:s', time());
我收到来自 api 的回复,其中有一个数据字段 "created_time":1568717579,然后我将其转换为 Ydm H:i:s 格式以保存到我的数据库中 [=15] =], 问题是 1970 年总是 returns.
echo date('Y-m-d H:i:s', 1568717579/1000);die;
// always returns year 1970
不需要除以1000,时间戳为Epoch(Unix时间)格式:https://en.wikipedia.org/wiki/Unix_time
简单
echo date('Y-m-d H:i:s', 1568717579);
// Utc current time seconds from 00:00:00 UTC on 1 January 1970
echo time();
// Current time date
echo date('Y-m-d H:i:s', time());