PHPCMS v9过滤收罗内容中的CSS样式

[摘要]PHPCMS v9收罗内容的时候,由于收罗法则的原因,大概会无法完全过滤收罗方针的CSS样式,这样就会导致文章宣布出来后排版错杂。本文教你在靠山民众函数库中添加一个函数,过滤掉收罗来的CSS样式

  在PHPCMS v9收罗内容的时候,由于收罗法则的原因,大概会无法完全过滤收罗方针的CSS样式,这样就会导致文章宣布出来后排版错杂。本文教你在靠山民众函数库中添加一个函数,过滤掉收罗来的CSS样式,要领如下:

  1、找到\phpcms\libs\functions\global.func.php 打开,然后添加函数

function htmrp($str) {
$str = preg_replace("/<script[^>]*>/i", "", $str);
$str = preg_replace("/<\/script>/i", "", $str);
$str = preg_replace("/<iframe[^>]*>/i", "", $str);
$str = preg_replace("/<\/iframe>/i", "", $str);
$str = preg_replace("/<style[^>]*>/i", "", $str);
$str = preg_replace("/<\/style>/i", "", $str);
$str = preg_replace("/<div[^>]*>/i", "", $str);
$str = preg_replace("/<\/div>/i", "", $str);
return $str;
}

  2、修改当前模板中文章内容页模板show.html

  界面—模板气势气魄—详情列表—content—show.html

  找到

{if $allow_visitor==1}
{$content}

  修改为

{htmrp($content)}

  3、更新缓存,刷新即可。

PHPCMS v9.6.0 GBK下载

PHPCMS v9过滤采集内容中的CSS样式

界面预览

分享到

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/10104.html