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();
*  you can add the words in small caps into the text file separating each word with a new line for example:
   *  bitch
   *  ass
   *  dick
   *  nigger
   *  just as words and do not put quotes or anything around the words.
  **/