转换一个UNIX时间戳来格式化日期字符串转换一个UNIX时间戳来格式化日期字符串(Convertin

2019-05-13 11:03发布

使用PHP,我想UNIX时间戳转换为类似这样的日期字符串: 2008-07-17T09:24:17Z

如何转换的时间戳,如13336994392008-07-17T09:24:17Z

Answer 1:

尝试gmdate是这样的:

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


Answer 2:

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

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

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

下面是一些格式的日期功能支持的

<?php
$today = date("F j, Y, g:i a");                 // March 10, 2001, 5:16 pm
$today = date("m.d.y");                         // 03.10.01
$today = date("j, n, Y");                       // 10, 3, 2001
$today = date("Ymd");                           // 20010310
$today = date('h-i-s, j-m-y, 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("D M j G:i:s T Y");               // 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
?>


Answer 3:

假设你正在使用PHP5.3然后处理日期现代的方式是通过本地DateTime类 。 为了得到当前的时间,你可以叫

$currentTime = new DateTime();

要(现在即不)创建一个特定的时间戳的DateTime对象

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

为了得到一个格式化字符串,你可以调用

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

看到这里手册页



Answer 4:

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

<?php
// set default timezone
date_default_timezone_set('Europe/Berlin');

// timestamp
$timestamp = 1307595105;

// output
echo date('d M Y H:i:s Z',$timestamp);
echo date('c',$timestamp);
?> 

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



Answer 5:

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


Answer 6:

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

这应该工作。



Answer 7:

我发现,在这次谈话中的信息非常有用,我只是想补充我怎么想通了,通过使用从我的MySQL数据库的时间戳和一个小PHP

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

输出是:2017-03-03T08:22:36 + 01:00

非常感谢您Stewe答案是我灵光一现。



Answer 8:

检查这个网址http://www.epochconverter.com/ 。

让所有语言大纪元&Unix时间戳。



文章来源: Converting a UNIX Timestamp to Formatted Date String