php html转text的方法:首先创建一个PHP示例文件;然后通过“function html2text($str){…}”方法对html中的标记进行替换即可。

本文操作环境:Windows7系统、PHP7.1版,DELL G3电脑

php将HTML转换为txt文本的函数

利用php的preg_replace函数对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("/&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;
 }

推荐学习:《PHP视频教程》

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » php html怎么转text