Format.htmlentities ViewHelper <f:format.htmlentities>
Applies htmlentities
escaping to a value.
See https://www.php.net/manual/function.htmlentities.php.
Examples
Default notation
<f:format.htmlentities>{text}</f:format.htmlentities>
Copied!
Text containing the following signs &
"
'
<
>
will be processed by htmlentities
.
These will result in: &
"
'
<
>
.
Inline notation
{text -> f:format.htmlentities(encoding: 'ISO-8859-1')}
Copied!
Text containing the following signs &
"
'
<
>
will be processed by htmlentities
.
These will result in: &
"
'
<
>
.
But encoded as ISO-8859-1.
Source code
Go to the source code of this ViewHelper: Format\HtmlentitiesViewHelper.php (GitHub).
Arguments
The following arguments are available for the format.htmlentities ViewHelper:
doubleEncode
-
- Type
- bool
- Default
- true
If FALSE existing html entities won't be encoded, the default is to convert everything.
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