$html = "<b> It's bold </b>";print preg_replace('@(.*?)@e',"html_entity_decode('$1')", $html);print "\n";$html = '<i> "This" is italic. </i>';print preg_replace('@(.*?)@e',"html_entity_decode('$1')", $html);print "\n";?>
<b> It's bold </b>
(.*?)
<i> "This" is italic. </i>