当前位置:首页 > PHP教程 > php应用 > 列表

PHP清理字符串中所有无用标签

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-22 10:43:32 浏览: 评论:0 

很多时候需要输出一些 “纯” 字符串,也就是去除任何杂质,例如 Html 标签、空格之类的文本,输出的摘要就是如此,下面的这个函数可以帮你实现着一点.

PHP实例代码如下:

  1. function Bing_string_cleanr( $string ){ 
  2.  $string = trim( $string );  
  3.  $string = strip_tags$string ); 
  4.  $string = htmlspecialchars( $string, ENT_QUOTES, 'UTF-8' ); 
  5.  $string = str_replace"n"""$string ); 
  6.  $string = trim( $string ); 
  7.  return $string

使用方法如下:

echo Bing_string_cleanr( '内 容 <br> <html> asdfeiuonsdfje' ); 

php删除空白,代码如下:

  1. <?php 
  2. $str = " This line containstliberal rn use of whitespace.nn"
  3.  
  4. // First remove the leading/trailing whitespace 
  5. //去掉开始和结束的空白 
  6. $str = trim($str); 
  7.  
  8. // Now remove any doubled-up whitespace 
  9. //去掉跟随别的挤在一块的空白 
  10. $str = preg_replace('/s(?=s)/'''$str); 
  11.  
  12. // Finally, replace any non-space whitespace, with a space 
  13. //最后,去掉非space 的空白,用一个空格代替 
  14. $str = preg_replace('/[nrt]/'' '$str); 
  15. //开源代码phpfensi.com 
  16. // Echo out: 'This line contains liberal use of whitespace.' 
  17. echo "<pre>{$str}</pre>"
  18. ?>

Tags: PHP清理标签 PHP清理字符串

分享到: