Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 SQL 导入将数据从一个应用程序迁移到另一个应用程序,而我正处于获取输入日期的最后一步。我遇到的困难是日期格式有些奇怪。
示例如下... 1360938606 1360938612 1360938607 1360938607
在新申请中,日期格式如下:0000-00-00 00:00:00
有没有办法可以将原始格式转换为 Excel 中的这种新格式?
谢谢!
看起来像马克提到的unix时间戳广告......这实际上是非常标准的。您可以使用strftimefrom php 将其转换为您想要的字符串格式:
strftime
$time = strftime('%F %T', (int) $thevalue)
你也可以试试这个:
$newdateformat = date('Y-m-d H:i:s', $oldtimestamp);
参考http://php.net/manual/en/function.date.php