Format.urlencode ViewHelper <f:format.urlencode>
Note
This reference is part of the documentation of Fluid Standalone. If you are working with Fluid in TYPO3 CMS, please refer to TYPO3's ViewHelper reference instead.
Encodes the given string according to http://www.faqs.org/rfcs/rfc3986.html
Applying PHPs rawurlencode
function.
See https://www.php.net/manual/function.rawurlencode.php.
Note
The output is not escaped. You may have to ensure proper escaping on your own.
Examples
Default notation
<f:format.urlencode>foo @+%/</f:format.urlencode>
Copied!
foo%20%40%2B%25%2F
rawurlencode
applied.
Inline notation
{text -> f:format.urlencode()}
Copied!
Url encoded text rawurlencode
applied.
Go to the source code of this ViewHelper: Format\UrlencodeViewHelper.php (GitHub).
Arguments
The following arguments are available for the format.urlencode ViewHelper:
value
-
- Type
- string
string to format