时间:2023-04-21 14:36:02 | 来源:网站运营
时间:2023-04-21 14:36:02 来源:网站运营
帝国CMS灵动标签去除重复标题信息:本人网站是帝国CMS制作的,因为网站是采集的,栏目设计的不严谨,有些地方栏目会发布相同的标题,因此首页调用时会有很多重复的文章出现,这时就需要去重。<?php$cfbt="|";?>[e:loop={'11,14,17,18,',22,0,0,'firsttitle=0','newstime DESC'}]<?phpif(stristr($cfbt,"|".$bqr['title']."|")){ continue;}$cfbt.=$bqr['title']."|";?><a href="<?=$bqsr['titleurl']?>"><?=$bqr[ftitle]?$bqr[ftitle]:esub($bqr[title],60)?></a>[/e:loop]
这种方法是调用,后处理的办法,优点是效率高,缺点是数量不好把控。[e:loop={'11,14,17,18,',22,0,0,'group by title','newstime DESC'}]<a href="<?=$bqsr['titleurl']?>"><?=$bqr[ftitle]?$bqr[ftitle]:esub($bqr[title],60)?></a>[/e:loop]
这种方法是让数据库去重,效率差点,但是数量好控制。关键词:重复,标题,信息,标签,帝国