Home > php教程 > PHP源码 > body text

php 去除html标签 和 css样式

WBOY
Release: 2016-06-02 09:14:15
Original
1325 people have browsed it
跳至 [1] [全屏预览]
$content = preg_replace("/<a[^>]*>/i", "", $content);
   $content = preg_replace("/<\/a>/i", "", $content); 
   $content = preg_replace("/<div[^>]*>/i", "", $content);
   $content = preg_replace("/<\/div>/i", "", $content);    
   
   $content = preg_replace("/<!--[^>]*-->/i", "", $content);//注释内容
      
   $content = preg_replace("/style=.+?['|\"]/i",'',$content);//去除样式
   $content = preg_replace("/class=.+?['|\"]/i",'',$content);//去除样式
   $content = preg_replace("/id=.+?['|\"]/i",'',$content);//去除样式   
   $content = preg_replace("/lang=.+?['|\"]/i",'',$content);//去除样式    
   $content = preg_replace("/width=.+?['|\"]/i",'',$content);//去除样式 
   $content = preg_replace("/height=.+?['|\"]/i",'',$content);//去除样式 
   $content = preg_replace("/border=.+?['|\"]/i",'',$content);//去除样式 
   $content = preg_replace("/face=.+?['|\"]/i",'',$content);//去除样式 

   $content = preg_replace("/face=.+?['|\"]/",'',$content);//去除样式 只允许小写 正则匹配没有带 i 参数
Copy after login
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template