当前位置: 首页 > 站长资讯 > 正文页面

用自定义函数解决帝国cms的简介截取字符时出现html的问题

正如标题所言帝国cms的简介截取字符时出现html,针对这个问题,下面有个不错的解决方法,主要是通过自定义函数来实现的,感兴趣的朋友也可以尝试操作下TIU网站目录_网站网址收录与提交入口

首先在 e/class/connect.php 文件中加入一个自定义函数 比如 NoHTML() 这个自己喜欢随便设置TIU网站目录_网站网址收录与提交入口

//去除HTML标记TIU网站目录_网站网址收录与提交入口

function NoHTML($string){TIU网站目录_网站网址收录与提交入口

$string = preg_replace("'<script[^>]*?>.*?</script>'si", "", $string);//去掉javascriptTIU网站目录_网站网址收录与提交入口

$string = preg_replace("'<[/!]*?[^<>]*?>'si", "", $string); //去掉HTML标记TIU网站目录_网站网址收录与提交入口

$string = preg_replace("'([rn])[s]+'", "", $string); //去掉空白字符TIU网站目录_网站网址收录与提交入口

$string = preg_replace("'&(quot|#34);'i", "", $string); //替换HTML实体TIU网站目录_网站网址收录与提交入口

$string = preg_replace("'&(amp|#38);'i", "", $string);TIU网站目录_网站网址收录与提交入口

$string = preg_replace("'&(lt|#60);'i", "", $string);TIU网站目录_网站网址收录与提交入口

$string = preg_replace("'&(gt|#62);'i", "", $string);TIU网站目录_网站网址收录与提交入口

$string = preg_replace("'&(nbsp|#160);'i", "", $string);TIU网站目录_网站网址收录与提交入口

return $string;TIU网站目录_网站网址收录与提交入口

}TIU网站目录_网站网址收录与提交入口

然后去帝国cms列表内容模板修改代码即可TIU网站目录_网站网址收录与提交入口

$r[smalltext]=esub(NoHTML($r[smalltext]),200,'......');TIU网站目录_网站网址收录与提交入口

$listtemp='<li><strong><a href="[!--titleurl--]">[!--title--]</a></strong><p>[!--smalltext--]</p></li>';TIU网站目录_网站网址收录与提交入口

这样问题就解决了,很简单吧.TIU网站目录_网站网址收录与提交入口

 TIU网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章