I have some text i need to filter out a list of bad words in like:

$bad_words = array(
  'word1' => 'gosh',
  'word2' => 'darn',
);

I can loop through these and replace one at a time but that is slow right? Is there a better way?

thanks

link

54% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Yes there is. Use preg_replace_callback():

<?php
header('Content-Type: text/plain');

$text = 'word1 some more words. word2 and some more words';
$text = preg_replace_callback('!\w+!', 'filter_bad_words', $text);
echo $text;

$bad_words = array(
  'word1' => 'gosh',
  'word2' => 'darn',
);

function filter_bad_words($matches) {
  global $bad_words;
  $replace = $bad_words[$matches[0]];
  return isset($replace) ? $replace : $matches[0];
}
?>

That is a simple filter but it has many limitations. Like it won't stop variations on spelling, use of spaces or other non-word characters in between letters, replacement of letters with numbers and so on. But how sophisticated you want it to be is up to you basically.

link
+1 for at least addressing word breaks. – chaos Jun 19 '09 at 23:36
feedback

str_ireplace() can take an array for both search and replace arguments. You can use it with your existing array like this:

$unfiltered_string = "gosh and darn are bad words";
$filtered_string = str_ireplace(array_vals($bad_words), array_keys($bad_words), $unfiltered_string);

// $filtered string now contains: "word1 and word2 are bad words"
link
1  
The problem with that is that you can make replacements on partial words. Imagine "butt" was a bad word in this case, well you'll replace it in "buttress", which is a completely unrelated word. – cletus Jun 19 '09 at 23:34
Indeed - this is just the simplest solution. preg_replace_callback() would work better. – pix0r Jun 19 '09 at 23:36
Yes sorry i dont want cbuttic cars – Jordie Jun 19 '09 at 23:50
feedback

Like so:

function clean($array, $str) {
    $words = array_keys($array);
    $replacements = array_values($array);

    return preg_replace($words, $replacements, $str);
}
link
feedback

Your Answer

 
or
required, but never shown

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