Try this to get your function working:
replace your code:
$uglytext = ereg_replace(" $wordlist[$i] "," ",$uglytext);
with
$uglytext = ereg_replace($wordlist[$i]," ",$uglytext);
Also you may want to add in your $wordlist array a double space twice, to get rid of extra white space.
Also you may want to make the words like " or " rather then "or", so that you do not replace letters in words like "word".
Also, if you make the previous change, you may want to add the code:
$uglytext=" ".$uglytext." ";
so that the first and last word are checked for ugly words.
-Chris