>백엔드 개발 >PHP 튜토리얼 >HTML 태그로 콘텐츠 필터링

HTML 태그로 콘텐츠 필터링

WBOY
WBOY원래의
2016-07-25 09:09:451021검색

详细内容可以参考
周小蛇的秘密花园 ---- PHP手写方法之 过滤HTML字符
http://zhousir.net/php-html-filtering-method-handwritten-characters.html

  1. function html2text($str){
  2. $str = trim($str);
  3. $str = preg_replace("/||/isU","",$str);
  4. $alltext = "";
  5. $start = 1;
  6. for($i=0;$i31){
  7. $alltext .= $str[$i];
  8. }
  9. }
  10. }
  11. $alltext = str_replace(" "," ",$alltext);
  12. $alltext = preg_replace("/&([^;&]*)(;|&)/","",$alltext);
  13. $alltext = preg_replace("/[ ] /s"," ",$alltext);
  14. $alltext = htmlspecialchars($alltext,ENT_QUOTES);
  15. return $alltext;
  16. }
复制代码


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.