用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

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

时间:2015-01-23  来源:西部数据  作者:西部数据

很多时候需要输出一些 “纯” 字符串,也就是去除任何杂质,例如 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. ?>
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
    无相关信息
栏目更新
栏目热门