pull-icon
logo-mobile

Badword Filter

Home/Forums/Badword Filter

EmmaS

this month

Replace unwanted words with preferred alternatives.

<?php
declare(strict_types=1);

/**
 *
 * Features:
 * - Case-insensitive matching
 * - Easy to extend (just edit the $replacements array)
 * - Safe for any input (typed and validated)
 */
function cleanText(string $text): string
{
    $replacements = [
        'asshole' => 'mate',
        'arse'   => 'bottom',
    ];

    return str_ireplace(
        array_keys($replacements),
        array_values($replacements),
        $text
    );
}

// Example
$original = "Oi asshole, Im gonna kick your arse on COD!";
$cleaned  = cleanText($original);

echo $cleaned;


Result = Oi mate, Im gonna kick your bottom on COD!

Leave a Comment

You must be logged in to post a reply.


BellOnline provides fast, reliable UK hosting designed for modern radio and web projects. Optimised servers, strong security, and excellent uptime ensure your station runs smoothly.
MixStream delivers broadcast-grade radio streaming with outstanding stability, crystal-clear audio, and powerful performance even during peak listener hours. Perfect for hobby stations and professional broadcasters alike.


Your secure download link has been emailed to:

Goto BellOnline Now!