在織夢(mèng)(即dedecms)二次開發(fā)以及網(wǎng)站建設(shè)時(shí),我們經(jīng)常會(huì)用到字符串截取的問(wèn)題,在織夢(mèng)中字符串內(nèi)容截取函數(shù)比較常用的有兩個(gè)。今天,來(lái)給大家說(shuō)一下這兩個(gè)函數(shù)。
Html2text() 函數(shù)是去掉html標(biāo)簽代碼。
cn_substr(str,80) 函數(shù)是截取字符串長(zhǎng)度。
當(dāng)然,他們也可以合并起來(lái)使用:
-
[field:body function="cn_substr(Html2text(@me),80)"/]
更多函數(shù)總結(jié): 基本語(yǔ)法: 函數(shù)一:
-
function=cn_substr(@me,200)(功能:獲取指定數(shù)值的字符串)
函數(shù)二:
-
function=html2text(@me)(功能:去掉html樣式,轉(zhuǎn)換為純文本字符)
函數(shù)三:
-
function=GetDateTimeMk(‘@me’)(功能:根據(jù)秒數(shù)返回時(shí)間)
函數(shù)四:
-
function=“GetDateMK(@me) (功能:根據(jù)秒數(shù)返回日期)
函數(shù)五:
-
function=‘strftime(“%m-%d”,@me)’(功能:根據(jù)秒數(shù)返回格式化的日期或者時(shí)間,php自帶的函數(shù))
首頁(yè):
-
08 [field:pubdate function=strftime('%d',@me)/]
-
08 日 [field:pubdate function=strftime('%d日',@me)/]
-
06-08 [field:pubdate function=strftime('%m-%d',@me)/]
-
06月08日 [field:pubdate function=strftime('%m月%d日',@me)/]
-
09-06-08 [field:pubdate function=strftime('%y-%m-%d',@me)/]
-
2009-06-08 [field:pubdate function=strftime('%Y-%m-%d',@me)/]
-
09年06月08日 [field:pubdate function=strftime('%y年%m月%d日',@me)/]
-
2009年06月08日 [field:pubdate function=strftime('%Y年%m月%d日',@me)/]
-
2009-06-08 13:28 [field:pubdate function=strftime('%Y-%m-%d %H:%M',@me)/]
列表頁(yè):
-
[field:pubdate function="GetDateTimeMK(@me)"/]==2008-1-1 18:30:02
-
[field:pubdate function="GetDateMK(@me)"/]==2008-05-15
函數(shù)六:
-
function=‘str_replace(“lit_”,“”,@me) (功能:替換字符串)
函數(shù)七:
-
function=MyDate(‘m-d’,@me) (功能:返回格林威治標(biāo)準(zhǔn)時(shí)間)
組合函數(shù):
-
function="html2text(cn_substr('@me',200))"(功能:提取指定個(gè)數(shù)的字符串并去掉html樣式,轉(zhuǎn)換為純文本字符)
舉例:
-
{dede:field.content function="Html2Text(cn_substr('@me',110))" /}
功能:獲取欄目信息摘要信息(提取110個(gè)字符[55個(gè)漢字]),刪除hml標(biāo)簽元素,轉(zhuǎn)為純文本!