kamu/aman

Replace badword

v1.2.1 2024-09-24 08:32 UTC

This package is auto-updated.

Last update: 2024-09-24 08:41:51 UTC


README

aman

PHP Programming Language Total Downloads views Repo size License

Simple Profanity Filter with Regex

This is a simple project that filters out profane words using regex in PHP. It provides functions to check, filter, and remove unwanted words from a text using regex patterns that account for similar characters.

Features

  • Profanity Check: Check if a string contains any unwanted words.
  • Profanity Filter: Remove unwanted words from a text.
  • Profanity Masking: Replace unwanted words with a masking character, such as *.

Installation

To install this package, you can use Composer:

  1. Run the following command in your project directory:

    composer require kamu/aman
  2. Add the list of words you want to filter in the db/lists.php file.

    return [
        'badword1',
        'badword2',
        // Add more words you want to filter
    ];

Usage

You can use the Aman class to filter profanity in your application.

Example Usage

  1. Check for Profane Words

    use Kamu\Aman;
    
    $text = "This is an example with bad words.";
    $filter = Aman::factory();
    
    if ($filter->check($text)) {
        echo "This text contains profanity.";
    } else {
        echo "This text is clean.";
    }
  2. Mask Profane Words

    $text = "This is an example with bad words.";
    $maskedText = $filter->masking($text, '*');
    echo $maskedText; // Output: "This is an example with *** ****."
  3. Remove Profane Words

    $text = "This is an example with bad words.";
    $cleanText = $filter->filter($text);
    echo $cleanText; // Output: "This is an example with ."
  4. Get Profane Words from Text

    $text = "This is an example with bad words.";
    $badWords = $filter->words($text);
    print_r($badWords); // Output: ['bad', 'words']

Contributing

I'm very open to those of you who want to contribute to the Aman!

Security Vulnerabilities

If you find any security vulnerabilities in this Aman, please email DKL via dewanakretarta29@gmail.com.

License

Aman is open-sourced software licensed under the MIT license.