欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

織夢(mèng)dedecms富文本內(nèi)容中屏蔽標(biāo)簽實(shí)例代碼

  發(fā)布時(shí)間:2019-12-06 17:04:42   作者:dede58   我要評(píng)論
這篇文章主要介紹了織夢(mèng)dedecms富文本內(nèi)容中屏蔽標(biāo)簽實(shí)例代碼,有需要的朋友們可以在本地嘗試下。

文章的body字段屏蔽a標(biāo)簽和iframe標(biāo)簽

{dede:field.body runphp="yes"}
    $str=@me;
    @me='';
    $str1='';
    $str1 = preg_replace( "@<iframe(.*?)</iframe>@is", "", $str ); 
    $str1 = preg_replace("/<a[^>]*>(.*?)<\/a>/is", "$1", $str1);
    @me=$str1;
{/dede:field.body}

以下是過(guò)濾其他標(biāo)簽的正則表達(dá)式

$str=preg_replace("/\s+/", " ", $str); //過(guò)濾多余回車
$str=preg_replace("/<[ ]+/si","<",$str); //過(guò)濾<__("<"號(hào)后面帶空格)
$str=preg_replace("/<\!–.*?–>/si","",$str); //注釋
$str=preg_replace("/<(\!.*?)>/si","",$str); //過(guò)濾DOCTYPE
$str=preg_replace("/<(\/?html.*?)>/si","",$str); //過(guò)濾html標(biāo)簽
$str=preg_replace("/<(\/?br.*?)>/si","",$str); //過(guò)濾br標(biāo)簽
$str=preg_replace("/<(\/?head.*?)>/si","",$str); //過(guò)濾head標(biāo)簽
$str=preg_replace("/<(\/?meta.*?)>/si","",$str); //過(guò)濾meta標(biāo)簽
$str=preg_replace("/<(\/?body.*?)>/si","",$str); //過(guò)濾body標(biāo)簽
$str=preg_replace("/<(\/?link.*?)>/si","",$str); //過(guò)濾link標(biāo)簽
$str=preg_replace("/<(\/?form.*?)>/si","",$str); //過(guò)濾form標(biāo)簽
$str=preg_replace("/cookie/si","COOKIE",$str); //過(guò)濾COOKIE標(biāo)簽
$str=preg_replace("/<(applet.*?)>(.*?)<(\/applet.*?)>/si","",$str); //過(guò)濾applet標(biāo)簽
$str=preg_replace("/<(\/?applet.*?)>/si","",$str); //過(guò)濾applet標(biāo)簽
$str=preg_replace("/<(style.*?)>(.*?)<(\/style.*?)>/si","",$str); //過(guò)濾style標(biāo)簽
$str=preg_replace("/<(\/?style.*?)>/si","",$str); //過(guò)濾style標(biāo)簽
$str=preg_replace("/<(title.*?)>(.*?)<(\/title.*?)>/si","",$str); //過(guò)濾title標(biāo)簽
$str=preg_replace("/<(\/?title.*?)>/si","",$str); //過(guò)濾title標(biāo)簽
$str=preg_replace("/<(object.*?)>(.*?)<(\/object.*?)>/si","",$str); //過(guò)濾object標(biāo)簽
$str=preg_replace("/<(\/?objec.*?)>/si","",$str); //過(guò)濾object標(biāo)簽
$str=preg_replace("/<(noframes.*?)>(.*?)<(\/noframes.*?)>/si","",$str); //過(guò)濾noframes標(biāo)簽
$str=preg_replace("/<(\/?noframes.*?)>/si","",$str); //過(guò)濾noframes標(biāo)簽
$str=preg_replace("/<(i?frame.*?)>(.*?)<(\/i?frame.*?)>/si","",$str); //過(guò)濾frame標(biāo)簽
$str=preg_replace("/<(\/?i?frame.*?)>/si","",$str); //過(guò)濾frame標(biāo)簽
$str=preg_replace("/<(script.*?)>(.*?)<(\/script.*?)>/si","",$str); //過(guò)濾script標(biāo)簽
$str=preg_replace("/<(\/?script.*?)>/si","",$str); //過(guò)濾script標(biāo)簽
$str=preg_replace("/javascript/si","Javascript",$str); //過(guò)濾script標(biāo)簽
$str=preg_replace("/vbscript/si","Vbscript",$str); //過(guò)濾script標(biāo)簽
$str=preg_replace("/on([a-z]+)\s*=/si","On\\1=",$str); //過(guò)濾script標(biāo)簽
$str=preg_replace("/&#/si","&#",$str); //過(guò)濾script標(biāo)簽,

$str = preg_replace( "@<script(.*?)</script>@is", "", $str ); //過(guò)濾script代碼
$str = preg_replace( "@<iframe(.*?)</iframe>@is", "", $str );
$str = preg_replace( "@<style(.*?)</style>@is", "", $str );
$str = preg_replace( "@<(.*?)>@is", "", $str ); 

大家可以在本地嘗試下小編已經(jīng)成功了,希望我們整理的內(nèi)容能夠幫助到大家。

相關(guān)文章

最新評(píng)論