a Sensio Labs Product

The flexible, fast, and secure
template engine for PHP

Filters » url_encode

Questions & Feedback

License

Creative Commons License Twig documentation is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License.

url_encodeΒΆ

New in version 1.12.3: Support for encoding an array as query string was added in Twig 1.12.3.

The url_encode filter percent encodes a given string as URL segment or an array as query string:

1
2
3
4
5
{{ "path-seg*ment"|url_encode }}
{# outputs "path-seg%2Ament" #}

{{ {'param': 'value', 'foo': 'bar'}|url_encode }}
{# outputs "param=value&foo=bar" #}

Note

Internally, Twig uses the PHP urlencode or the http_build_query function.

This website is powered by PHP and Twig. The Twig logo is © 2010-2012 Sensio Labs