function sed_cc($text) { $text = preg_replace('/&#([0-9]{2,4});/is','&#$1;',$text); $text = str_replace( array('{', '<', '>' , '$', '\'', '"', '\\', '&', ' '), array('{', '<', '>', '$', ''', '"', '\', '&amp;', '&nbsp;'), $text); return($text); }