php – 帮助将timestamp字符串转换为可读时间格式

前端之家收集整理的这篇文章主要介绍了php – 帮助将timestamp字符串转换为可读时间格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个名为Time的记录,输入文件中包含以下日期字符串:20100902040003.

我需要一些PHP帮助来将其转换为更易读的内容,例如这种格式:2010-09-02 04:00:03
并且在打印表数据时想格式化它.

$timestamp = "20100902040003";
echo date('Y-m-d H:i:s',strtotime($timestamp)); // output: 2010-09-02 04:00:03
原文链接:https://www.f2er.com/php/133705.html

猜你在找的PHP相关文章