HTML 转 TXT PHP 函数

2021-02-01 17:16

阅读:487

标签:array   properly   arc   function   perl   clu   ret   bsp   好用   

这个函数我没试过 不知道好不好用

 

function htmltotxt($document){
    $search = array(‘@@si‘,  // Strip out javascript
                   ‘@]*?>@si‘,            // Strip out HTML tags
                   ‘@@siU‘,    // Strip style tags properly
                   ‘@@‘          // Strip multi-line comments including CDATA 
    );
    $text = preg_replace($search, ‘‘, $document);
    return $text;
}

 

HTML 转 TXT PHP 函数

标签:array   properly   arc   function   perl   clu   ret   bsp   好用   

原文地址:https://www.cnblogs.com/trip-j/p/13176520.html


评论


亲,登录后才可以留言!