php - 将从SQL Server检索到的时间戳转换为CET

时间:2015-06-16 15:38:44

标签: php sql-server

我从SQL表中检索了几个字段,其中一个是(UTC格式的时间戳)。
我需要在时间戳中添加2小时或转换时间戳CET时区。

出于此问题的目的,变量$ EventTime包含在 2015-06-16 15:34:27.000 中从SQL数据库中检索到的时间戳。

我已尝试过以下代码,但我确定它不正确。

 while($result_row=odbc_fetch_array($sql_run)){
                $EventTime=$result_row['EventTime'];
                $EventTime2=$EventTime;
                $EventTime2->setTimezone(new DateTimeZone("Europe/Rome"));

echo $EventTime2->format("F d, Y g:i a")
....
}

0 个答案:

没有答案