呼叫標籤 的日期 如何更改為十位的

2021-06-04 05:11:01 字數 2324 閱讀 2889

舉個例子:

要增加乙個這樣的[content:date style=aaa-d-yyy]時間樣式

在inc/aspcms_mainclass.asp中找到

if str="content" or str="aboutcontent" or str="news" or str="product" or str="down" or str="pic"  then

繼續向下

case "date"

timestyle = parsearr(fieldarr)("style") : if isnul(timestyle) then timestyle = "m-d"

select case timestyle

case "yy-m-d"

nloopstr = replace(nloopstr,matchfield.value,formatdate(rsobj("addtime"),1))

case "y-m-d"

nloopstr = replace(nloopstr,matchfield.value,formatdate(rsobj("addtime"),2))

case "m-d"

nloopstr = replace(nloopstr,matchfield.value,formatdate(rsobj("addtime"),3))

'增加乙個,引數設為10,case設為aaa-d-yyy,對應標籤中的style

case "aaa-d-yyy"

nloopstr = replace(nloopstr,matchfield.value,formatdate(rsobj("addtime"),10))

end select

然後在inc/aspcms_commonfun.asp中找到

'轉換時間

function formatdate(byval t,byval ftype)

在end select上面新增乙個case 10

case 10

dim marray:marray = array("jan","feb","mar","apr","may","jun","jul","aug","sep","oct", "nov","dec")

formatdate=marray(clng(m)-1)&" "&d&"."&y

end select

ok 可以了

inc/aspcms_mainclass.asp檔案1490行

select case timestyle

case "yy-m-d"

nloopstr = replace(nloopstr,matchfield.value,formatdate(datearray(5,i),1))

case "y-m-d"

nloopstr = replace(nloopstr,matchfield.value,formatdate(datearray(5,i),2))

case "m-d"

nloopstr = replace(nloopstr,matchfield.value,formatdate(datearray(5,i),3))

case "yy-mm-dd"

nloopstr = replace(nloopstr,matchfield.value,formatdate(datearray(5,i),4))

修改inc/aspcms_commonfun.asp檔案820行的formatdate函式:

function formatdate(byval t,byval ftype)

select case cint(ftype)

case 1

formatdate = year(t)&"-"&month(t)&"-"&day(t)

case 2

formatdate = right(year(t),2)&"-"&month(t)&"-"&day(t)

case 3

formatdate = month(t)&"-"&day(t)

case 4

dim tempmonth

tempmonth = right(month(t),2)

if cint(tempmonth) < 10 then tempmonth="0"&tempmonth

dim tempday

tempday = right(day(t),2)

if cint(tempday) < 10 then tempday="0"&tempday

formatdate = right(year(t),2)&"-"&tempmonth&"-"&tempday

end select

end function

絕對值得收藏的十位電影配樂大師 中

top5 如日中天的配樂大師 漢斯.季默hans zimmer 漢斯.季默 是最近最如日中天 炙手可熱的電影配樂大師之一,角鬥士 配樂儘管在奧斯卡提名中 被 臥虎藏龍 奪去,但影片中令人窒息的英雄主義詩篇的 給人留下非常深刻的印象。漢斯.季默 hans zimmer 1957年9月12日生於德國的法...

phpcms 之 日期時間標籤的呼叫

參考 1 日期時間格式化顯示 a標準型 輸出為 2013 01 31 13 15 10 b拆分型 年月日 輸出為 2013年01月31日 c擴充套件型 4位年份 輸出為 2013 或 2014 2位年份 輸出為 10 或 11 英文月份全稱 輸出為 january 到 december 英文月份縮寫...

用Python 計算十位數以內的數的反數

根據題目可知期望的結果如下 數字 2100 210o的反數為 12 數字 2100 2100的反數為 12數字 2001 2001的反數為 1002 數字 2010 2010的反數為 102首先我們要判斷該字串是否由數字組成 包括負號 python自帶的函式isdigit 只能判斷正整數,isnum...