Twig

The flexible, fast, and secure
template engine for PHP

a Symfony Product
Docs Filters format
You are reading the documentation for Twig 3.x. Switch to the documentation for Twig 1.x, 2.x.

Questions & Feedback

License

Twig documentation is licensed under the new BSD license.

format

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