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