Coldfusion时区US->英国GMT

时间:2013-07-04 08:15:56

标签: datetime coldfusion

我正在更新一些代码,因为我们现在在美国服务器上,但我们位于英国,所以我们的时区需要更改日期和时间。

我创建了这个脚本。

    <cfset tztemp = GetTimeZoneInfo()>
    <cfset isDST = tztemp.isDSTOn >
    <cfif isDST eq "Yes">
    <cfset dtGMT = #CreateODBCDateTime(DateAdd("s",tztemp.utcTotalOffset+3600,now()))#>
    <cfelse>
    <cfset dtGMT = #CreateODBCDateTime(DateAdd("s",tztemp.utcTotalOffset,now()))#>
    </cfif>

我的问题是如何将#dtGMT#值更改为以下格式?

#DateFormat(Now(), "YYMMDD")#

#TimeFormat(Now(), "HHMM")#

三江源

1 个答案:

答案 0 :(得分:2)

#DateFormat(dtGMT, "YYMMDD")#

#TimeFormat(dtGMT "HHMM")#