The article provides you with two PHP filter all HTML tags oh, he can filter all the HTML tags AH.
The article provides you with two PHP tutorials to filter all HTML tags oh, he can filter all the HTML tags AH.
Remove HTML tags
function text2html ($txt) {
$txt = Str_replace ("", "" ", $txt);
$txt = Str_replace ("<", "<", $txt);
$txt = Str_replace (">", ">", $txt);
$txt = Preg_replace ("/[]{1,}/isu", "
", $txt);
return $txt;
}
Clear HTML Tags
function clearhtml ($str) {
$str = Str_replace (' < ', ' < ', $str);
$str = Str_replace (' > ', ' > ', $str);
return $str;
}
http://www.bkjia.com/PHPjc/445419.html www.bkjia.com true http://www.bkjia.com/PHPjc/445419.html techarticle The article provides you with two PHP filter all HTML tags oh, he can filter all the HTML tags AH. The article provides you with two PHP tutorials to filter all HTML tags oh, he can filter all the ...