Format.htmlentitiesDecode ViewHelper <f:format.htmlentitiesDecode>

Applies html_entity_decode() to a value. See https://www.php.net/html_entity_decode.

Examples

Default notation

<f:format.htmlentitiesDecode>{text}</f:format.htmlentitiesDecode>
Copied!

Text containing the following escaped signs: &amp; &quot; &#039; &lt; &gt;, will be processed by html_entity_decode(). These will result in: & " ' < >.

Inline notation

{text -> f:format.htmlentitiesDecode(encoding: 'ISO-8859-1')}
Copied!

Text containing the following escaped signs: &amp; &quot; &#039; &lt; &gt;, will be processed by html_entity_decode(). These will result in: & " ' < >.

But encoded as ISO-8859-1.

Source code

Go to the source code of this ViewHelper: Format\HtmlentitiesDecodeViewHelper.php (GitHub).

Arguments

The following arguments are available for the format.htmlentitiesDecode ViewHelper:

encoding
Type
string
Define the encoding used when converting characters (Default: UTF-8).
keepQuotes
Type
bool
Default
false
If TRUE, single and double quotes won't be replaced (sets ENT_NOQUOTES flag).
value
Type
string
string to format