織夢模板下載(dedecms)字符串內(nèi)容截取函數(shù)代碼方法
時間: 2018-11-18 16:50
閱讀: 次
作者:素材無憂網(wǎng)
在織夢(即dedecms)二次開發(fā)以及網(wǎng)站建設(shè)時,我們經(jīng)常會用到字符串截取的問題,在織夢中字符串內(nèi)容截取函數(shù)比較常用的有兩個。今天,80空間小編來給大家說一下這兩個函數(shù)。
Html2text() 函數(shù)是去掉html標(biāo)簽代碼。
cn_substr(str,80) 函數(shù)是截取字符串長度。
當(dāng)然,他們也可以合并起來使用:
[field:body function="cn_substr(Html2text(@me),80)"/]
更多函數(shù)總結(jié):
基本語法:
函數(shù)一:function=cn_substr(@me,200)(功能:獲取指定數(shù)值的字符串)
函數(shù)二:function=html2text(@me)(功能:去掉html樣式,轉(zhuǎn)換為純文本字符)
函數(shù)三:function=GetDateTimeMk('@me')(功能:根據(jù)秒數(shù)返回時間)
函數(shù)四: function="GetDateMK(@me) (功能:根據(jù)秒數(shù)返回日期)
函數(shù)五: function='strftime("%m-%d",@me)'(功能:根據(jù)秒數(shù)返回格式化的日期或者時間,php自帶的函數(shù))
首頁:
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)/]
列表頁:
[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)準時間)
組合函數(shù):function="html2text(cn_substr('@me',200))"(功能:提取指定個數(shù)的字符串并去掉html樣式,轉(zhuǎn)換為純文本字符)
舉例:
{dede:field.content function="Html2Text(cn_substr('@me',110))" /}
功能:獲取欄目信息摘要信息(提取110個字符[55個漢字]),刪除hml標(biāo)簽元素,轉(zhuǎn)為純文本!
標(biāo)簽: