Repositories (1)
Profanus
3 snippets stored for this repo
/* this is an array of blacklisted words, can be generated from a database or file or direct in the script
* for best result, just make sure you add the profanity words in smallcase eg 'bitch','pussy'
*/
{
$bad_words = array('fck', 'fuck', 'ass', 'babe', 'sexy', 'bitch');
$more_bad_words = $this->read_dictionary();