[转]ASP常用函数:TimeZone
程序员文章站
2023-11-16 21:45:04
功能:获取服务器所在时区 复制代码 代码如下:<% function timezone() &n...
功能:获取服务器所在时区
<%
function timezone()
set oshell = createobject("wscript.shell")
atb = "hkey_local_machine\system\currentcontrolset\" & _
"control\timezoneinformation\activetimebias"
timezone = - oshell.regread(atb) / 60
end function
%>
复制代码 代码如下:
<%
function timezone()
set oshell = createobject("wscript.shell")
atb = "hkey_local_machine\system\currentcontrolset\" & _
"control\timezoneinformation\activetimebias"
timezone = - oshell.regread(atb) / 60
end function
%>
上一篇: java微信公众号支付开发之现金红包
下一篇: ASP常用函数:CLngIP()