时间:2021-07-01 10:21:17 帮助过:2人阅读
function filter_words($str){
$sql = "Select * from gx_filter where id=1 limit 1";
$result = mysql_query($sql);
$rs = mysql_fetch_array($result);
$array = explode('|',$rs['filter_words']);
if( is_array($array) ){
$array_length = sizeof($array);
for($i=0;$i< $array_length; $i++){
$str = @str_replace($array[$i],'',$str);
}
}
return $str;
}
从数据库读取客户要过滤的字符,然后再如上处理就OK了.
申请:本站原创转载请注明www.111cn.cn/phper/php.html
http://www.bkjia.com/PHPjc/630428.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/630428.htmlTechArticle根据客户的要求他们可以在后台手动的设置和过滤一些不应该出现的关键字,所以就写出下面的代码了喽,字符过滤程序 !DOCTYPE html PUBLIC -//...