欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > 其他教程 >
其他教程

php转换html为txt文本的函数代码

(元素模板) / 2020-02-12 17:09

本例使用php的preg_replace函数对html中的标记进行替换,以得到纯文本txt内容。

<?php
/**
 * 转换html为txt文本的函数
 * Edit www.jbxue.com
 * at 2013/5/11
*/

function html2text($str){  
  $str = preg_replace("/<style .*?<\/style>/is", "", $str);  $str = preg_replace("/<script .*?<\/script>/is", "", $str);  
  $str = preg_replace("/<br \s*\/?\/>/i", "\n", $str);  
  $str = preg_replace("/<\/?p>/i", "\n\n", $str);  
  $str = preg_replace("/<\/?td>/i", "\n", $str);  
  $str = preg_replace("/<\/?div>/i", "\n", $str);  
  $str = preg_replace("/<\/?blockquote>/i", "\n", $str);  
  $str = preg_replace("/<\/?li>/i", "\n", $str);  
  $str = preg_replace("/\&nbsp\;/i", " ", $str);  
  $str = preg_replace("/\&nbsp/i", " ", $str);  
  $str = preg_replace("/\&amp\;/i", "&", $str);  
  $str = preg_replace("/\&amp/i", "&", $str);    
  $str = preg_replace("/\&lt\;/i", "<", $str);  
  $str = preg_replace("/\&lt/i", "<", $str);  
  $str = preg_replace("/\&ldquo\;/i", '"', $str);  
  $str = preg_replace("/\&ldquo/i", '"', $str);  
  $str = preg_replace("/\&lsquo\;/i", "'", $str);  
  $str = preg_replace("/\&lsquo/i", "'", $str);  
  $str = preg_replace("/\&rsquo\;/i", "'", $str);  
  $str = preg_replace("/\&rsquo/i", "'", $str);  
  $str = preg_replace("/\&gt\;/i", ">", $str);   
  $str = preg_replace("/\&gt/i", ">", $str);   
  $str = preg_replace("/\&rdquo\;/i", '"', $str);   
  $str = preg_replace("/\&rdquo/i", '"', $str);   
  $str = strip_tags($str);  
  $str = html_entity_decode($str, ENT_QUOTES, $encode);  
  $str = preg_replace("/\&\#.*?\;/i", "", $str);          
 
 return $str;
 }
?>

Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com