php过滤html标签

php自带函数strip_tags

echo strip_tags("hello <b>world! </b>");

自定义函数:

function filterhtml($str) {

        $str=eregi_replace("</*[^<>]*>", , $str);

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

        $str=str_replace("n", , $str);

        $str=str_replace("t", , $str);

        $str=str_replace("::", :, $str);

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

   //$str=str_replace("&nbsp;", , $str);

        return $str;

}

$str = "<a href=#>www.jinyuanbao.cn</a>";

调用函数 echo filterhtml($str);


你可能感兴趣的:(php过滤html标签)