php通过毫秒时间戳获取具体的Y-m-d H:i:s时间?
PHPz
PHPz 2017-05-16 13:12:50
0
2
541

php通过毫秒时间戳获取具体的Y-m-d H:i:s时间?

例如毫秒时间戳为:1492396179000对应的格式为:2017-04-17 10:29:39

PHPz
PHPz

学习是最好的投资!

Antworte allen(2)
左手右手慢动作

用substr截取毫秒时间戳的前十位就可以了啊 例如:

date_default_timezone_set('PRC');
$time = 1492396179000;
$time = substr($time,0,10);
$date = date('Y-m-d H:i:s',$time);

echo $date;
漂亮男人
date_default_timezone_set('PRC');
$mtimestamp = sprintf("%.3f", microtime(true)); // 带毫秒的时间戳
 
$timestamp = floor($mtimestamp); // 时间戳
$milliseconds = round(($mtimestamp - $timestamp) * 1000); // 毫秒
 
$datetime = date("Y-m-d H:i:s", $timestamp) . '.' . $milliseconds;
echo sprintf("%s -> %s", $mtimestamp, $datetime);
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage