码迷,mamicode.com
首页 > Web开发 > 详细

处理HTML标签方法

时间:2015-01-04 16:48:57      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

public function DeleteHtml($str){
    $str=trim($str);//清除字符串两边的空格
    $str=strip_tags($str,"");//利用php自带的函数清除html格式
    $str=preg_replace("/\t/","",$str);//使用正则表达式匹配需要替换的内容,如空格和换行,并将替换为空
    $str=preg_replace("/\r\n/","",$str);
    $str=preg_replace("/\r/","",$str);
    $str=preg_replace("/\n/","",$str);
    $str=preg_replace("/ /","",$str);
    $str=preg_replace("/ /","",$str);//匹配html中的空格
    return trim($str);//返回字符串
 }

处理HTML标签方法

标签:

原文地址:http://www.cnblogs.com/yalibuxiao/p/4201419.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!