Heim  >  Artikel  >  Backend-Entwicklung  >  PHP自定义函数:去除所有html标签_PHP教程

PHP自定义函数:去除所有html标签_PHP教程

WBOY
WBOYOriginal
2016-07-13 17:41:09766Durchsuche

PHP自定义函数:去除所有html标签

  1. function pregstring($str){
  2.     $strtemp = trim($str);
  3.     $search = array(
  4.         "||Uis",
  5.         "|<script>].*?</script>|Uis", // 去掉 javascript
  6.         "|[字定义].*[/字定义]|Uis", // 去掉缩略图
  7.         "|]*?>|Uis", // 去掉 HTML 标记
  8.         ">(quot|#34);i", // 替换 HTML 实体
  9.         ">(amp|#38);i",
  10.         "|,|Uis",
  11.         "|[s]{2,}|is",
  12.         "[>nbsp;]isu",
  13.         "|[$]|Uis",
  14.     );
  15.     $replace = array(
  16.         "`",
  17.         "",
  18.         "",
  19.         "",
  20.         "",
  21.         "",
  22.         "",
  23.         " ",
  24.         " ",
  25.         " ",
  26.     );
  27.     $text = preg_replace($search, $replace, $strtemp);
  28.     return $text;
  29. }
  30. echo pregstring(字符串); //调用函数
  31. ?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/486145.htmlTechArticlePHP自定义函数:去除所有html标签 ?php function pregstring($str){ $strtemp = trim($str); $search = array( "||Uis", "|script[^].*?/script|Uis", // 去掉 javascript "|[字定...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn