0

ASP を使用して strtotime を取得する方法を必要としている PHP プログラマーの皆さん。ネイティブ ASP で簡単な関数が見つからなかったので、次のように記述しました。それが誰かを助けることを願っています!

4

1 に答える 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 に答える