This package can clean all non-normative lexis from your texts
This package could be used for cleaning obscene language from user messages., (*1)
Simply install it using composer command:, (*2)
composer require "pavelpage/censorship:dev-master"
, (*3)
You have to options for using this package:, (*4)
Replace obscene words, (*5)
$censor = new Censor(); $text = "some text"; $censor->clean($text);// will replace obscene words in your text
Check the text, (*6)
$censor = new Censor(); $text = "some text"; $censor->hasObsceneWords($text);
You have a few abilities to add functionality if you think, that package doesn't solute your problems., (*7)
Here are some parameters which you can replace in the config file:, (*8)
Parameter | Value |
---|---|
default_obscene_patterns | default patterns which used to detect obscene words |
obscene_patterns | you can add your own patterns to find obscene words |
replace_pattern | place symbols which will replace obscene words |
obscene_words | simply write words which should be replaced |
except_words | also, you can exclude some words from checking |
$censor = new Censor(['param_name' => []);// just send your custom configuration parameters to __construct method of controller
You can visit this site demo and check how it is working., (*9)
Now package works only with russian language, feel free to add english patterns or use some patterns from the examples directory(english.php)., (*10)