HTML 转 TXT PHP 函数
2021-02-01 17:16
标签:array properly arc function perl clu ret bsp 好用 这个函数我没试过 不知道好不好用 HTML 转 TXT PHP 函数 标签:array properly arc function perl clu ret bsp 好用 原文地址:https://www.cnblogs.com/trip-j/p/13176520.htmlfunction 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;
}
下一篇:PHP 部署局域网测试环境