PHP strtotime ASP等价物

时间:2013-11-12 22:35:29

标签: php asp-classic strtotime

嘿,任何PHP程序员都需要一种使用ASP获取strtotime的方法。我无法在原生ASP中找到一个简单的函数,所以我写了以下内容。希望它可以帮助别人!

1 个答案:

答案 0 :(得分:0)

<%

Function formatNumber(value, digits) 
if digits > len(value) then 
formatNumber = String(digits-len(value),"0") & value 
else 
formatNumber = value 
end if 
End Function


date1 = "1970/01/01 00:00:00"
date2 = "2013/11/12 10:00:00"
strtotime = DateDiff("s",date1,date2)
strtotime = thestr-3600
Response.write(strtotime) 'number of seconds since January 1 1970 00:00:00 GMT

%>