首頁  >  文章  >  後端開發  >  php將html格式轉換為文字格式的方法

php將html格式轉換為文字格式的方法

墨辰丷
墨辰丷原創
2018-06-02 11:11:253523瀏覽

这篇文章主要介绍了php实现转换html格式为文本格式的方法,通过一个自定义函数实现针对HTML标签的过滤,涉及php正则替换的相关操作技巧,需要的朋友可以参考下

有时候需要转换html格式的字符串为文本,但又需要保持一定的格式,比如要求段落变成的分段格式就可以用下面这个函数

function html2text($str){
 $str = preg_replace("/<style .*?<\\/style>/is", "", $str);
 $str = preg_replace("/<script .*?<\\/script>/is", "", $str);
 $str = preg_replace("/<br \\s*\\/>/i", ">>>>", $str);
 $str = preg_replace("/<\\/?p>/i", ">>>>", $str);
 $str = preg_replace("/<\\/?td>/i", "", $str);
 $str = preg_replace("/<\\/?p>/i", ">>>>", $str);
 $str = preg_replace("/<\\/?blockquote>/i", "", $str);
 $str = preg_replace("/<\\/?li>/i", ">>>>", $str);
 $str = preg_replace("/ /i", " ", $str);
 $str = preg_replace("/ /i", " ", $str);
 $str = preg_replace("/&/i", "&", $str);
 $str = preg_replace("/&/i", "&", $str);
 $str = preg_replace("/</i", "<", $str);
 $str = preg_replace("/</i", "<", $str);
 $str = preg_replace("/“/i", &#39;"&#39;, $str);
 $str = preg_replace("/&ldquo/i", &#39;"&#39;, $str);
 $str = preg_replace("/‘/i", "&#39;", $str);
 $str = preg_replace("/&lsquo/i", "&#39;", $str);
 $str = preg_replace("/&#39;/i", "&#39;", $str);
 $str = preg_replace("/&rsquo/i", "&#39;", $str);
 $str = preg_replace("/>/i", ">", $str);
 $str = preg_replace("/>/i", ">", $str);
 $str = preg_replace("/”/i", &#39;"&#39;, $str);
 $str = preg_replace("/&rdquo/i", &#39;"&#39;, $str);
 $str = strip_tags($str);
 $str = html_entity_decode($str, ENT_QUOTES, "utf-8");
 $str = preg_replace("/.*?;/i", "", $str);
 return $str;
}

总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。

相关推荐:

php通过各种函数判断0和空

php识别翻转iphone拍摄的颠倒图片

php微信公众平台开发之微信群发信息实例分享

以上是php將html格式轉換為文字格式的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn