Phpdocs 34

CategoryString Functions - 20. html_entity_decode Convert all HTML entities to their applicable characters
Code Examplesdog now\n"; $a = htmlentities($orig); $b = html_entity_decode($a); echo $a; // I'll "walk" the <b>dog</b> now echo $b; // I'll "walk" the dog now
Test Code
Web Linkhttp://www.php.net/manual/en/function.html-entity-decode.php
Remarks
Cancel