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
|
I have some text i need to filter out a list of bad words in like:
I can loop through these and replace one at a time but that is slow right? Is there a better way? thanks
| ||||
|
feedback
|
|
Yes there is. Use
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. | |||
|
feedback
|
|
str_ireplace() can take an array for both search and replace arguments. You can use it with your existing array like this:
| |||||||||||
feedback
|
|
Like so:
| |||
|
feedback
|