|
html_entity_decodeConvert HTML entities to their corresponding characters Description
string html_entity_decode(string
$string , int $flags = ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401, stringnull $encoding = null )
html_entity_decode is the opposite of
htmlentities in that it converts HTML entities
in the More precisely, this function decodes all the entities (including all numeric entities) that a) are necessarily valid for the chosen document type — i.e., for XML, this function does not decode named entities that might be defined in some DTD — and b) whose character or characters are in the coded character set associated with the chosen encoding and are permitted in the chosen document type. All other entities are left as is. Parameters
Return ValuesReturns the decoded string. Changelog
Examples
Example #1 Decoding HTML entities
Notes
See Also
|