Category | String Functions - 20. html_entity_decode Convert all HTML entities to their applicable characters |
Code Examples | dog 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 Link | http://www.php.net/manual/en/function.html-entity-decode.php |
Remarks | |
Cancel |