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