htmlspecialchars_decode

Example

 string htmlspecialchars_decode ( string $string [, int $quote_style = ENT_COMPAT ] ) 

Description

This function is the opposite of htmlspecialchars(). It converts special HTML entities back to characters. The converted entities are: &, " (when ENT_NOQUOTES is not set), ' (when ENT_QUOTES is set), < and >.

Return Values

Returns the decoded string.