使用PHP,我希望将UNIX时间戳转换为类似于以下内容的日期字符串:2008-07-17 t9:24:17 z

如何将时间戳(如1333699439)转换为2008-07-17 t9:24:17 z ?


当前回答

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

这应该会起作用。

其他回答

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

这应该会起作用。

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

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

使用date("Y-m-d\TH:i:s\Z",1333699439)得到2012-04-06T13:33:59Z

下面是date函数支持的一些格式

<?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
?>

大多数人不读评论,gmdate()在接受的答案中有问题,它以GMT返回时间,所以如果我们使用date_default_timezone_set(zone)它将不起作用,而是使用date()。

<?php

$ts = 1664706166;
$date = date('Y-m-d H:i:s', $ts);
$gmdate = gmdate('Y-m-d H:i:s', $ts);
echo  "date()  : $date\n";
echo  "gmdate(): $gmdate\n\n";

date_default_timezone_set("Asia/Jakarta");
$date = date('Y-m-d H:i:s', $ts);
$gmdate = gmdate('Y-m-d H:i:s', $ts);
echo  "date()  : $date\n";
echo  "gmdate(): $gmdate <- GMT\n";

/* result
date()  : 2022-10-02 10:22:46
gmdate(): 2022-10-02 10:22:46

After set timezone
date()  : 2022-10-02 17:22:46
gmdate(): 2022-10-02 10:22:46 <- GMT
*/

DateTime类在构造函数中接受一个字符串。如果你用@-字符作为时间戳的前缀,你创建了一个带有时间戳的DateTime对象。格式化使用'c'格式…预定义的ISO 8601复合格式。

如果可以像这样使用DateTime类…设置正确的时区,如果需要UTC时间,则不设置。

$dt = new DateTime('@1333699439');
$dt->setTimezone(new DateTimeZone('America/New_York'));
echo $dt->format('c');

https://www.php.net/manual/en/book.datetime.php https://www.php.net/manual/en/datetime.format.php 更多示例和时区https://time.einfach.jetzt/?t=1333699439

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

<?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