شما باید جایگزین کنید.
<?php
$bad_words = array(
'bad word', 'hated word', 'please copy'
);
$string = 'Please Copy is not a bad word or a hated word';
$string = strtolower($string);
$result = str_replace($bad_words, '***', $string);
echo $result;
//...