Skip to content

Instantly share code, notes, and snippets.

@aknosis
Created April 9, 2012 22:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aknosis/2347191 to your computer and use it in GitHub Desktop.
Save aknosis/2347191 to your computer and use it in GitHub Desktop.
TIL - How to use rawurlencode instead of urlencode with Twig
{# varaible is 'Hello There' #}
{{ variable|url_encode() }} {# Hello+There #}
{# If you want to use rawurlencode what do you do? #}
{{ variable|url_encode(true) }} {# Hello%20There #}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment