PHP code example of xtodx / php-obscene-censor-rus

1. Go to this page and download the library: Download xtodx/php-obscene-censor-rus 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/ */

    

xtodx / php-obscene-censor-rus example snippets


$text = 'Да пошел ты нахуй и в пиzdu huesos, ушлепок ебаный, ебать мой вялый хуй!
Мой дед ветеран твоего деда педрилу ебал :( Хуячечки';

ObsceneCensorRus::filterText($text);

echo $text;
//Да пошел ты ***** и в ***** ******, ушлепок ******, ***** мой вялый ***!
//Мой дед ветеран твоего деда ******* **** :( ********

$text = ObsceneCensorRus::getFiltered($text);

var_dump(ObsceneCensorRus::isAllowed($text));
// false

ObsceneCensorRus::getFiltered('кто прочитает тот лол', 'CP1251')

composer 

php phpunit.phar ./tests