将UNIX时间戳转换为格式化的datestring

使用PHP,我想将UNIX时间戳转换为类似于此的datestring: 2008-07-17T09:24:17Z

如何将时间戳如1333699439转换为2008-07-17T09:24:17Z

尝试这个:

 <?php $timestamp=1333699439; echo gmdate("Ymd\TH:i:s\Z", $timestamp); ?> 

使用date函数date ( string $format [, int $timestamp = time() ] )

使用date('c',time())作为格式转换为ISO 8601date(在PHP 5中添加) – 2012-04-06T12:45:47+05:30

使用date("Ymd\TH:i:s\Z",1333699439)以获取2012-04-06T13:33:59Z

这里是datefunction支持的一些格式

 <?php $today = date("F j, Y, g:ia"); // March 10, 2001, 5:16 pm $today = date("mdy"); // 03.10.01 $today = date("j, n, Y"); // 10, 3, 2001 $today = date("Ymd"); // 20010310 $today = date('his, jmy, it is w Day'); // 05-16-18, 10-03-01, 1631 1618 6 Satpm01 $today = date('\i\t \i\s \t\h\e jS \d\a\y.'); // it is the 10th day. $today = date("DM j G:i:s TY"); // Sat Mar 10 17:16:18 MST 2001 $today = date('H:m:s \m \i\s\ \m\o\n\t\h'); // 17:03:18 m is month $today = date("H:i:s"); // 17:16:18 ?> 

假设你正在使用PHP5.3,那么处理date的现代方式是通过本地的DateTime类 。 要获得当前的时间,你可以打电话

 $currentTime = new DateTime(); 

要从特定时间戳创buildDateTime对象(即不是现在)

 $currentTime = DateTime::createFromFormat( 'U', $timestamp ); 

要获得一个格式化的string,你可以再打电话

 $formattedString = $currentTime->format( 'c' ); 

请参阅手册页面

设置默认时区以获得正确的结果非常重要

 <?php // set default timezone date_default_timezone_set('Europe/Berlin'); // timestamp $timestamp = 1307595105; // output echo date('d MYH:i:s Z',$timestamp); echo date('c',$timestamp); ?> 

在线转换帮助: http : //freeonlinetools24.com/timestamp

 $unixtime_to_date = date('jS FY h:i:s A (T)', $unixtime); 

这应该工作。

 <?php $timestamp=1486830234542; echo date('Ymd H:i:s', $timestamp/1000); ?> 

我发现这个对话中的信息非常有帮助,我只是想通过使用我的MySQL数据库中的时间戳和一个小小的PHP

  <?= date("Ymd\TH:i:s\+01:00",strtotime($column['loggedin'])) ?> 

输出结果为:2017-03-03T08:22:36 + 01:00

非常感谢Stewe您回答对我来说是一个尤里卡。

检查这个urlhttp://www.epochconverter.com/ 。

拥有所有的语言Epoch&Unix Timestamp。