Twig

The flexible, fast, and secure
template engine for PHP

a Symfony Product
Docs Filters format
Docs for Twig version 3.x
Switch to another version: 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