码迷,mamicode.com
首页 > Web开发 > 详细

php过滤字符串函数

时间:2015-05-13 11:56:16      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

function StripHTML($string){
$pattern=array ("‘<script[^>]*?>.*?</script>‘si", "‘<style[^>]*?>.*?</style>‘si",  "‘<[\/\!]*?[^<>]*?>‘si",  "‘([\r\n])[\s]+‘",  "‘&(quot|#34);‘i",  "‘&(amp|#38);‘i",  "‘&(lt|#60);‘i",  "‘&(gt|#62);‘i",  "‘&(nbsp|#160);‘i",  "‘&(iexcl|#161);‘i",  "‘&(cent|#162);‘i",  "‘&(pound|#163);‘i",  "‘&(copy|#169);‘i",  "‘&#(\d+);‘e");
$replace=array (‘‘, ‘‘, "\\1", ‘‘, "&", "<", ">", ‘ ‘, chr(161), chr(162), chr(163), chr(169), "chr(\\1)");
return preg_replace ($pattern, $replace, $str);
}

php过滤字符串函数

标签:

原文地址:http://www.cnblogs.com/pengboyu/p/4499727.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!