As you know, there is a common code to replace bad words:

$badwords = array('bad', 'very bad');
$string = str_replace($badwords, "***", $string);

But what if spammers duplicate some of characters? like "baaad" or "veery bad".

link|improve this question

71% accept rate
4  
You'll quickly find yourself falling into a few clbuttic traps if you go down that path: stackoverflow.com/tags/clbuttic/info . Once you've identified a spammer, isn't better to hide their posts completely rather than censor specific words? – Frank Farmer Jul 19 '11 at 22:21
Thank you for the clbuttic. – Hamid Jul 19 '11 at 22:31
Yes, it is better to ban the spammer but what can i do with someone that creating multiple account? Most of our users have not static IP. – Hamid Jul 19 '11 at 22:34
1  
Consider 3rd party spam detection like antispam.typepad.com – Frank Farmer Jul 19 '11 at 22:53
Do you know any code or class to help me on this issue? (filtering badwords) – Hamid Jul 19 '11 at 23:06
feedback

1 Answer

up vote 0 down vote accepted

You could implement a Levenshtein Distance algorithm using PHP's levenshtein. If the word only needs one edit to become a bad word, then it could be a possible spam word with duplicate characters.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.