PHP code example of mofodojodino / profanity-filter
1. Go to this page and download the library: Download mofodojodino/profanity-filter library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mofodojodino / profanity-filter example snippets
/* default constructor */
$check = new Check();
$hasProfanity = $check->hasProfanity($badWords);
$cleanWords = $check->obfuscateIfProfane($badWords);
/* customized word list from file */
$check = new Check('path.to/wordlist.php');
/* customized word list from array */
$badWords = array('bad', 'words'); // or load from db
$check = new Check($badWords);