Source Code:
(back to article)
<?php $html_string = "<p>I'm a paragraph</p>"; $decoded_string = html_entity_decode($html_string, ENT_QUOTES); echo $decoded_string; ?>
Result:
Report an issue