Petsmacker Posted January 15, 2007 Share Posted January 15, 2007 I'm trying to work on a posting system for my members but obviously want to be able to filter obscenities.My problem is that the word 'ass' is a word I'd want to block. However if I say 'assess' - my filter would incorrectly block it.I need help to create a filter that filters the EXACT word. I've found plenty of others on the net that don't do that and just do something like '***ess' (ass) and '****ake' (shit)Here's my script in progress (yes its basic but bear with me):[code]<?php$cuss=mysql_query("SELECT word FROM swearwords");$num8=mysql_numrows($cuss);$i8=0;while ($i8 < $num8) {$word=mysql_result($cuss,$i8,"word");$countsws=substr_count(strtolower($postedmessage), strtolower($word));if ($countsws > 0){$i8=$num8;$theword=$word;} // Halts loop and grabs swear word in $theword variable++$i8;}?>[/code]How can I get it to block the word and ONLY the word? Link to comment https://forums.phpfreaks.com/topic/34222-bad-language-filter-exact-words/ Share on other sites More sharing options...
Petsmacker Posted January 16, 2007 Author Share Posted January 16, 2007 You're telling me that of all the advanced problems people post on these forums, this one has no solvable solution? Link to comment https://forums.phpfreaks.com/topic/34222-bad-language-filter-exact-words/#findComment-161714 Share on other sites More sharing options...
utexas_pjm Posted January 16, 2007 Share Posted January 16, 2007 Maybe I'm oversimplifying, but couldn't you just do something like:[code]str_replace(' ass ', ' *** ', $string);[/code]?Best,Patrick Link to comment https://forums.phpfreaks.com/topic/34222-bad-language-filter-exact-words/#findComment-161719 Share on other sites More sharing options...
Petsmacker Posted January 16, 2007 Author Share Posted January 16, 2007 The idea had gone through my mind but if somebody wrote something like:'Petsmacker is an ass.'It wouldn't block it because the word 'ass' was next to a full stop. This also happens if somebody JUST wrote the word 'ass' on a post and then submitted. Link to comment https://forums.phpfreaks.com/topic/34222-bad-language-filter-exact-words/#findComment-161753 Share on other sites More sharing options...
utexas_pjm Posted January 16, 2007 Share Posted January 16, 2007 I'm not a regex expert, but something like this might work:[code]<?php$bad = 'ass';$foo = 'ass asset bass ass bass ass brass class ass';echo preg_replace('/(^'.$bad.')(\.|,|!| )|(\.|,|!| )('.$bad.')(\.|,|!| )|(\.|,|!| )('.$bad.'$)|(^'.$bad.'$)/', ' *** ', $foo);// Outputs: *** asset bass *** bass *** brass class ***?>[/code] Link to comment https://forums.phpfreaks.com/topic/34222-bad-language-filter-exact-words/#findComment-161772 Share on other sites More sharing options...
Petsmacker Posted January 16, 2007 Author Share Posted January 16, 2007 How could I then get it to stop the loop if an offending word was foundAnd then turn the offending word into a variable?------------------------------I've worked a little on my original script, it sorts the problem of spaces and punctuation besides real swear words, my only problem now is line breaks.If I write [quote]My name is ass[/quote] It would find it fine and stop it.However if I write it like this:[quote]My name isass[/quote]Then it doesn't, it sees the word as 'isass'...anyone know how to fix that?Script in question:[code]<?php$chunks = explode(" ", $postedmessage);$chunks = preg_replace('~[^a-zA-Z]~', '', $chunks);$countarr=count($chunks);$c=0;while ($c < $countarr){$cuss=mysql_query("SELECT word FROM swearwords");$num8=mysql_numrows($cuss);$i8=0;while ($i8 < $num8) {$word=mysql_result($cuss,$i8,"word");if ($chunks[$c] == $word){$c=$countarr;$i8=$num8;$theword=$word;$countsws=1;} // Halts everything and alerts filter with $countsws as 1++$i8;}++$c;}?>[/code]-----------If you/anybody could answer either of my questions it'd be really great! Link to comment https://forums.phpfreaks.com/topic/34222-bad-language-filter-exact-words/#findComment-161803 Share on other sites More sharing options...
Petsmacker Posted January 16, 2007 Author Share Posted January 16, 2007 Heck, I wish it was possible to edit posts on here. I've managed to fix my own problem in my own script by changing$chunks = explode(" ", $postedmessage);to$chunks = explode(" ", nl2br($postedmessage));===However, my way of doing it is reaaaally bad, I hope someone can answer my original question with an answer that doesn't use so much server brains. Link to comment https://forums.phpfreaks.com/topic/34222-bad-language-filter-exact-words/#findComment-161811 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.