phpmaster
php常用小功能
1.敏感词过滤
function badwordfun($str,$badword,$type="*"){
return strtr($str,array_combine($badword,array_fill(0,count($badword),$type)));
}
1.敏感词过滤
function badwordfun($str,$badword,$type="*"){
return strtr($str,array_combine($badword,array_fill(0,count($badword),$type)));
}