处理HTML标签方法

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);//返回字符串
 }

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。