当前位置:Gxlcms > PHP教程 > PHP过滤HTML代码空格,回车换行符的函数

PHP过滤HTML代码空格,回车换行符的函数

时间:2021-07-01 10:21:17 帮助过:22人阅读

PHP 过滤html代码空格,回车换行符的函数




  1. /**
  2. * PHP 过滤HTML代码空格,回车换行符的函数
  3. * echo deletehtml()
  4. */
  5. function deletehtml($str)
  6. {
  7. $str = trim($str);
  8. $str=strip_tags($str,"");
  9. $str=preg_replace("{\t}","",$str);
  10. $str=preg_replace("{\r\n}","",$str);
  11. $str=preg_replace("{\r}","",$str);
  12. $str=preg_replace("{\n}","",$str);
  13. $str=preg_replace("{ }","",$str);
  14. return $str;
  15. }

人气教程排行