Strings Php

$html = 'The <b> tag makes text bold: <b>bold</b>';
print preg_replace_callback('@(.*?)@','decode', $html);
function decode($matches) {
    return html_entity_decode($matches[1]);
}
?>