3v4l.org

run code in 300+ PHP versions simultaneously
<?php function filterwords(string $text, array $bannedWords) { return preg_replace_callback( '/\b(?:' . implode('|', $bannedWords) . ')\b/iu', fn($m) => str_repeat('*', mb_strlen($m[0])), $text ); } echo filterwords("I am a dummy, but I'm not dumb", ['dummy']);

preferences:
69.32 ms | 407 KiB | 5 Q