html 转为 纯文本

2012-10-10   来源:站长日记       编辑:沧海桑田   类别:PHP 教程    转载到:    发表评论

php 函数 删除 字符串中的 javascript , 样式表 style 和 所有的 html 标签 , 多行注释


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

33

0
33|0 | 鲜花 VS 砸蛋 | 116阅读 0评论
上一篇: php is_serialized
下一篇: PHP空格的处理
 
不想登录?直接点击发布即可作为游客留言。
昵称  邮箱 网站 验证码 = 1+1