Twig
The flexible, fast, and securetemplate engine for PHP
format
Found a typo or an error? Want to improve this document? Edit it.
Need support or have a technical question? Ask support on Stack Overflow.
The format filter formats a given string by replacing the placeholders (placeholders follows the sprintf notation):
1 2 3 4
{% set fruit = 'apples' %} {{ "I like %s and %s."|format(fruit, "oranges") }} {# outputs I like apples and oranges #}
See also
replace