嘿,任何需要使用 ASP 获取 strtotime 的 PHP 程序员。我在本机 ASP 中找不到简单的函数,所以我写了以下内容。希望它可以帮助某人!
问问题
483 次
1 回答
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
%>
于 2013-11-12T22:35:29.200 回答