PHP code example of buchin / badwords
1. Go to this page and download the library: Download buchin/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/ */
buchin / badwords example snippets
use Buchin\Badwords\Badwords;
Badwords::isDirty('Blood sugar sex magic');
/*
when string contains bad words, it returns true
Example result:
(boolean) true
*/
Badwords::strip('Blood sugar sex magic');
/*
given string contains bad words, it replaces vocal chars in bad word with asterix
Example result:
(string) "Blood sugar s*x magic"
*/