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

php过滤所有HTML标记

程序员文章站 2022-04-09 08:21:10
...
文章为你提供二款php 过滤所有HTML标记,他可以过滤所有的html标签啊,去除html标记,代码如下:

function text2html($txt){

$txt = str_replace(" "," ",$txt);

$txt = str_replace("<","&lt;",$txt);

$txt = str_replace(">","&gt;",$txt);

$txt = preg_replace("/[ ]{1,}/isu","<br/> ",$txt);

return $txt;

}

清除html标记,代码如下:

function clearhtml($str){

$str = str_replace('<','&lt;',$str);

$str = str_replace('>','&gt;',$str);

return $str;

}//开源软件:phpfensi.com

相关标签: php