首页 >

利用preg_replace灵活调用织梦DedeCMS文档标题

利用preg_replace灵活调用织梦DedeCMS文档标题

利用preg_replace灵活调用织梦DedeCMS文档标题

运用preg_replace+正则,灵活调用DedeCMS文档标题,比如替换标题title里的内容,删除隐藏title里的内容等,其实都是利用preg_replace函数搜索替换的功能。

比如,网站里的DedeCMS视频教程栏目里,很多文档标题都是2012版开头的:

织梦吧的DedeCMS视频教程栏目

在调用的时候,如果不想显示”2012版”这几个字,那么就可以使用preg_replace函数替换功能,来把”2012版”替换为空。先来看看preg_replace函数的用法:

preg_replace( pattern, eplacement, subject [, int limit] )

用法说明:在 subject 中搜索 pattern 模式的匹配项并替换为 replacement。如果指定了 limit,则仅替换 limit 个匹配,如果省略 limit 或者其值为 -1,则所有的匹配项都会被替换。

那么这里subject为title,DedeCMS标签里使用@me代替,从subject 查找”2012版”,先写好pattern为”/2012版/”,然后eplacement设置为空,即为:

[field:title function=”preg_replace(‘/2012版/’,”,@me)”/]

如此:

{dede:arclist typeid = ‘ ‘ titlelen=42 row=’16’}

[field:title function=”preg_replace(‘/2012版/’,”,@me)”/]

{/dede:arclist}

这样,调用的title就不再含有”2012版”了,另外,也可以把”2012版”替换为”2013版”,修改eplacement相应值即可。

其他DedeCMS字段也可以使用此函数,当然大伙也可以尝试把更多php函数,带到DedeCMS标签里来,让你的DedeCMS更加强大。


利用preg_replace灵活调用织梦DedeCMS文档标题
  • 织梦DedeCMS文章排序orderby排序规则
  • 织梦DedeCMS文章排序orderby排序规则 | 织梦DedeCMS文章排序orderby排序规则 ...

    利用preg_replace灵活调用织梦DedeCMS文档标题
  • 织梦DedeCMS arclist标签调用自定义字段方法
  • 织梦DedeCMS arclist标签调用自定义字段方法 | 织梦DedeCMS arclist标签调用自定义字段方法 ...

    利用preg_replace灵活调用织梦DedeCMS文档标题
  • 织梦DedeCMS模板用arclist调用副栏目却调用不出这篇文章怎么办?
  • 织梦DedeCMS模板用arclist调用副栏目却调用不出这篇文章怎么办? | 织梦DedeCMS模板用arclist调用副栏目却调用不出这篇文章怎么办? ...