欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php 过滤所有HTML标记

程序员文章站 2022-05-19 20:13:11
...
文章为你提供二款php 过滤所有HTML标记哦,他可以过滤所有的html标签啊。

文章为你提供二款php教程 过滤所有html标记哦,他可以过滤所有的html标签啊。

//去除html标记

function text2html($txt){
$txt = str_replace(" "," ",$txt);
$txt = str_replace(" $txt = str_replace(">",">",$txt);
$txt = preg_replace("/[ ]{1,}/isu","
",$txt);
return $txt;
}

//清除html标记

function clearhtml($str){
$str = str_replace(' $str = str_replace('>','>',$str);
return $str;
}