time.asp

来自「9seek 留言本源代码5.0版」· ASP 代码 · 共 38 行

ASP
38
字号
<%
function times(t)
	if not isdate(t) then exit function
	dim thour, tminute, tday, nowday, dnt, dayshow, pshow
	thour=hour(t)
	tminute=minute(t)
	tday=datevalue(t)
	nowday=datevalue(now)
	
	dnt=datediff("d",tday,nowday)
	if dnt=0 then
	   dayshow="今天"
	elseif dnt=1 then
	   dayshow="昨天"
	elseif dnt=2 then
	   dayshow="前天"
	else
	   times=tday
	   exit function
	end if
	
	if thour>=7 and thour<11 then
	   pshow="上午"
	elseif thour>=11 and thour<14 then
	   pshow="中午"
	elseif thour>=14 and thour<18 then
	   pshow="下午"
	elseif thour>=18 then
	   pshow="晚上"
	elseif thour>=0 and thour<7 then
	  pshow="清晨"
	else
	  pshow="难说"
	end if
	
	times=dayshow&pshow&thour&":"&tminute
end function
%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?