织梦(dedecms)字符串内容截取函数使用说明
在织梦(即dedecms)二次开发以及网站建设时,我们经常会用到字符串截取的问题,在织梦中字符串内容截取函数比较常用的有两个。今天,来给大家说一下这两个函数。
Html2text() 函数是去掉html标签代码。
cn_substr(str,80) 函数是截取字符串长度。
当然,他们也可以合并起来使用:
- [field:body function="cn_substr(Html2text(@me),80)"/]
- function=cn_substr(@me,200)(功能:获取指定数值的字符串)
- function=html2text(@me)(功能:去掉html样式,转换为纯文本字符)
- function=GetDateTimeMk(‘@me’)(功能:根据秒数返回时间)
- function=“GetDateMK(@me) (功能:根据秒数返回日期)
- function=‘strftime(“%m-%d”,@me)’(功能:根据秒数返回格式化的日期或者时间,php自带的函数)
- 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
- function=‘str_replace(“lit_”,“”,@me) (功能:替换字符串)
- function=MyDate(‘m-d’,@me) (功能:返回格林威治标准时间)
- function="html2text(cn_substr('@me',200))"(功能:提取指定个数的字符串并去掉html样式,转换为纯文本字符)
- {dede:field.content function="Html2Text(cn_substr('@me',110))" /}
上一篇:织梦DEDECMS列表页首页跟其它页使用不同模板的办 下一篇:dedecms织梦二级栏目,当前栏目高亮的问题解决