帝国cms简介截取字符时出现html的解决方法!(轻松去除HTML内容) 现在用来建站的开源cms程序太多了,目前用的比较多的无非就是织梦cms,和帝国cms了,相比其他小众的cms程序,这两个是用的较多的,像本站就是使用的帝国cms程序搭建,很多的小伙伴们在使用帝国cms模板搭建网站的时候,会遇到很多的技术问题,像很多的小伙伴们经常问到帝国cms简介截取字符时出现html要怎么删除呢?今天帝国CMS模板网就来为大家分享,告诉大家帝国cms简介截取字符时出现html去除的方法,下面一起来学习下吧: 首先在 e/class/connect.php 文件中加入一个自定义函数 比如 NoHTML() 这个自己喜欢随便设置 //去除HTML标记
function NoHTML($string){
$string = preg_replace("'<script[^>]*?>.*?</script>'si", "", $string);//去掉javascript
$string = preg_replace("'<[/!]*?[^<>]*?>'si", "", $string); //去掉HTML标记
$string = preg_replace("'([rn])[s]+'", "", $string); //去掉空白字符
$string = preg_replace("'&(quot|#34);'i", "", $string); //替换HTML实体
$string = preg_replace("'&(amp|#38);'i", "", $string);
$string = preg_replace("'&(lt|#60);'i", "", $string);
$string = preg_replace("'&(gt|#62);'i", "", $string);
$string = preg_replace("'&(nbsp|#160);'i", "", $string);
return $string;
} 然后去列表内容模板修改代码即可 $r[smalltext]=esub(NoHTML($r[smalltext]),200,'......');
$listtemp='<li><strong><a href="[!--titleurl--]">[!--title--]</a></strong><p>[!--smalltext--]</p></li>'; 这样问题就解决了,很简单吧 好了,今天的教程到这里就结束了,具体的效果,大家自行去测试吧~
|