php中不同时区的时间戳

时间:2012-12-18 04:49:47

标签: php datetime time timezone unix-timestamp

在下面的代码中,我需要获得2个国家/地区时区的unixtimestamp。代码的输出将给我一个差异的日期,但时间戳彼此不同。它保持不变。任何人都可以提供解决方案来获得不同时区的不同时间戳吗?提前谢谢。

date_default_timezone_set('Asia/Calcutta');
echo date("Y-m-d H:i:s")."<br/>"; //2012-12-18 12:12:12
echo strtotime(date("Y-m-d H:i:s",time()))."<br/>"; //1355812934

date_default_timezone_set('Europe/London');
echo date("Y-m-d H:i:s")."<br/>"; //2012-12-18 06:12:12
echo strtotime(date("Y-m-d H:i:s",time()))."<br/>"; //1355812934

2 个答案:

答案 0 :(得分:3)

您可以使用date("Z")以秒为单位获取时区偏移量。然后根据需要进行计算。

date_default_timezone_set('Asia/Calcutta');
echo 'Local time : '.date("r").'<br>'; // local time
echo 'Offset : '.date("Z").'<br>'; // time zone offset from UTC in seconds 
echo 'UTC Time : '.date('r', strtotime(date("r")) + (date("Z")*-1)); echo '<br><br>'; // this is UTC time converted from Local time

date_default_timezone_set('Europe/London');
echo 'Local time : '.date("r").'<br>'; // local time
echo 'Offset : '.date("Z").'<br>'; // time zone offset from UTC in seconds 
echo 'UTC time : '.date('r', strtotime(date("r")) + (date("Z")*-1)); echo '<br><br>'; // this is utc time converted from Local time

输出:

Local time : Tue, 18 Dec 2012 10:53:07 +0530
Offset : 19800
UTC Time : Tue, 18 Dec 2012 05:23:07 +0530

Local time : Tue, 18 Dec 2012 05:23:07 +0000
Offset : 0
UTC time : Tue, 18 Dec 2012 05:23:07 +0000  

答案 1 :(得分:2)

这应该有效,我改变了你原来使用php DataTimeZone类的方法。尝试一下,应该很容易理解:

$dateTimeZoneCalcutta = new DateTimeZone("Asia/Calcutta");
$dateTimeCalcutta = new DateTime("now", $dateTimeZoneCalcutta);
$calcuttaOffset = $dateTimeZoneCalcutta->getOffset($dateTimeCalcutta);
$calcuttaDateTime = date("Y-m-d H:i:s", time() + $calcuttaOffset);

echo 'Local Server Time: ' . date("Y-m-d H:i:s", time()) . '<br />';
echo 'Calcutta Time: ' . $calcuttaDateTime . '<br />';
echo 'Calcutta Timestamp: ' . strtotime($calcuttaDateTime)  . '<br />';
echo '<br /><br />';

$dateTimeZoneLondon = new DateTimeZone("Europe/London");
$dateTimeLondon = new DateTime("now", $dateTimeZoneLondon);
$londonOffset = $dateTimeZoneLondon->getOffset($dateTimeLondon);
$londonDateTime = date("Y-m-d H:i:s", time() + $londonOffset);

echo 'Local Server Time: ' . date("Y-m-d H:i:s", time()) . '<br />';
echo 'London Time: ' . $londonDateTime . '<br />';
echo 'London Timestamp: ' . strtotime($londonDateTime) . '<br />';