php实现转换html格式为文本格式的方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-08-06 10:07:50 浏览: 评论:0
这篇文章主要介绍了php实现转换html格式为文本格式的方法,通过一个自定义函数实现针对HTML标签的过滤,涉及php正则替换的相关操作技巧,需要的朋友可以参考下
本文实例讲述了php实现转换html格式为文本格式的方法,分享给大家供大家参考,具体如下:
有时候需要转换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("/<\\/?div>/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", '"', $str);
- $str = preg_replace("/&ldquo/i", '"', $str);
- $str = preg_replace("/‘/i", "'", $str);
- $str = preg_replace("/&lsquo/i", "'", $str);
- $str = preg_replace("/'/i", "'", $str);
- $str = preg_replace("/&rsquo/i", "'", $str);
- $str = preg_replace("/>/i", ">", $str);
- $str = preg_replace("/>/i", ">", $str);
- $str = preg_replace("/”/i", '"', $str);
- $str = preg_replace("/&rdquo/i", '"', $str);
- $str = strip_tags($str);
- $str = html_entity_decode($str, ENT_QUOTES, "utf-8");
- $str = preg_replace("/&#.*?;/i", "", $str);
- return $str;
- }
Tags: php转换html
- 上一篇:非常实用的php验证码类
- 下一篇:php使用curl通过代理获取数据的实现方法
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)