您好,欢迎访问一九零五行业门户网

过滤带有html标签的内容

详细内容可以参考
周小蛇的秘密花园 ---- php手写方法之 过滤html字符
http://zhousir.net/php-html-filtering-method-handwritten-characters.html
function html2text($str){ $str = trim($str); $str = preg_replace(/||/isu,,$str); $alltext = ; $start = 1; for($i=0;$i31){ $alltext .= $str[$i]; } } } $alltext = str_replace( , ,$alltext); $alltext = preg_replace(/&([^;&]*)(;|&)/,,$alltext); $alltext = preg_replace(/[ ]+/s, ,$alltext); $alltext = htmlspecialchars($alltext,ent_quotes); return $alltext;}
复制代码
其它类似信息

推荐信息