Jump to content

censoring comments


ohdang888

Recommended Posts

When you run that, you'll notice that in certain situations.... like harrassment it might become harr****mess.

 

You could always just do ' word ' instead of 'word' though.....  Oh....  Then you could have problems with 'ass.' or 'ass!' for example.... hmmm....

 

 

Edit:

 

You could use regular expression word boundries I guess......

 


<?php

$str = "ass harrass.";

$bad = array('ass');

foreach($bad as $k => $word) {
$bad[$k] = '/\b' . $word . '\b/';
}

echo preg_replace($bad, '****', $str);
//**** harrass

?>

Link to comment
https://forums.phpfreaks.com/topic/95121-censoring-comments/#findComment-487309
Share on other sites

<?php

$str = <<<H
This is a sentence with ass in it.
This is with ass at the end ass.
'ass'
"ass"
"Ass"
!ass!
ass
harrass
ass/ass
ASS
AsS
aSS
H;

$bad = array('ass');

foreach($bad as $k => $word) {
$bad[$k] = '/\b' . $word . '\b/i';
}

echo preg_replace($bad, '****', $str);

?>

 

 

Output:

 

This is a sentence with **** in it.

This is with **** at the end ****.

'****'

"****"

"****"

!****!

****

harrass

****/****

****

****

****

 

Regular expression word boundries....

Link to comment
https://forums.phpfreaks.com/topic/95121-censoring-comments/#findComment-487490
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.