This is probably v.easy but my php is very rusty. I need to implement a bad word filter...I currently have this:

if(!in_array($_POST['Name'],$profanities)) { echo $row['Name']; }

...and an profanities array with bad words in it. Problem is I want to be able to check if any portion of the name the user has entered contains one of those bad words....what I've currently got only checks if the name is the exact bad word....how do i do this?

thanks

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted
$name = $_POST['Name'];

foreach($profanities as $profanity) {

   if (preg_match('/\w' . preg_quote($profanity, '/') . '\w/i', $name) {
      // Bad word on its own
   }

}

This will match a bad word on its own only... i.e. it will match bad in Is it bad? but not in baddy. You can remove the word boundaries if you want to match that, or perhaps try strstr().

However, a valid name may contain a substring that is considered bad if you decide to check for simple string matching.

What if I wanted to name my username after my hometown?

link|improve this answer
feedback

Technically there are a few options, and some other answers point these out. Realistically, however, I would say do not do this.

Profanity filters are notoriously frustrating and limiting for users with unusual or foreign names/address/etc.

Please see: http://en.wikipedia.org/wiki/Swear_filter#Unintended_consequences

Additionally, if your users want to find a way around the filter, they will. They'll use similar sounding characters or special characters as both substitutions and additions.

EDIT: There is an excellent stackoverflow question already addressing this issue. please see How do you implement a good profanity filter?

EDIT: although the above stackoverflow question refers to Jeff's post about this, it can't hurt to repeat and reinforce. Obscenity Filters: Bad Idea, or Incredibly Intercoursing Bad Idea?

link|improve this answer
1  
Good points but it's a scoped requirement – elduderino Mar 10 '11 at 13:57
That is highly unfortunate. While it might be worth it to point your bosses at some of the reasons not to do this, I recognize that it is not always an option. The linked SO question also asks for php solutions to the problem and there are some to be found. I would advise against a simple preg_match/in_str. Checking using word boundaries would be preferred, e.g. massive would be ok, while ass might not. I will warn, though, it will be frustrating. What about a$$, a$s, a§§, @§§? Do the requirements also specify a list of such words? – Jonathan Fingland Mar 10 '11 at 14:04
feedback

This code will match all bad words found by searching a case-insensative match.

foreach($profanities as $profanity)
{
    if(preg_match('/' . $profanity . '/i', $row['Name']))
    {
        echo 'Bad word found!';
    }
}
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.