PHP code example of zeindelf / badwords

1. Go to this page and download the library: Download zeindelf/badwords 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/ */

    

zeindelf / badwords example snippets


$verify = \Badwords\Badwords::verify(/* sua palavra a ser verificada */);

if ( $verify ) {
	echo 'Badwords!';
}

$extra = [
	'badwords' => ['rocks'],
];

$verify = \Badwords\Badwords::verify('rocks', $extra);

if ( $verify ) {
	echo 'Badwords!';
}

$extra = [
	'ignored' => ['cadela'],
];

$verify = \Badwords\Badwords::verify('cadela', $extra);

if ( ! $verify ) {
	echo 'Cadela é uma palavra válida';
}

$extra = [
	'badwords' => ['rocks'],
	'ignored'  => ['cadela'],
];