Strings Php

$html = 'The <b> tag makes text bold: <b>bold</b>';
print preg_replace('@(.*?)@e',"html_entity_decode('$1')", $html);
?>