我需要将它转换为人类可读的时间戳

时间:2018-02-04 05:07:23

标签: php time

所以我有一个时间戳,我需要转换为人类可读的格式,但我无法弄清楚我需要使用哪些功能以及这是哪种格式。

20180129T220300Z

这是时间戳,我需要使用PHP将其转换为人类可读的GMT +10。

Timestamp response

1 个答案:

答案 0 :(得分:3)

我并不完全知道这个名字,但您可以将它与DateTime类一起使用。

<?php
$date = new DateTime('20180129T220300Z');
echo $date->format('Y-m-d H:i:s'); // 2018-01-29 22:03:00
?>

More information about the class and its methods over here...