Symfony News

New in Symfony 2.7: Default Date and Number Format Configuration

Christian Flothmann

Contributed by
Christian Flothmann
in #13554.

When you use the date filter to display dates in Twig templates, Symfony applies the default date formatting defined in the Twig Core extension. The same goes for numeric values formatted with the number_format filter.

These default formats can be overridden using the arguments of each filter:

1
{{ post.published_at|date("F jS \\a\\t g:ia") }}

However, if you use the same custom date or number formatting for all the values rendered in the application templates, this technique is very cumbersome. In Symfony 2.6 you can set the default formatting inside a controller as follows:

1
$this->get('twig')->getExtension('core')->setDateFormat('d/m/Y', '%d days');

Setting up the default formatting for the entire application is even more complex, because you usually need to set up a dedicated listener. Symfony 2.7 adds two new Twig configuration options to define the default formatting of both numbers and dates without the need to write custom code.

Use the date configuration option under the twig key to override any of the default date formatting options:

1
2
3
4
5
# app/config/config.yml
twig:
    date:
        format: d.m.Y, H:i:s
        interval_format: '%%d days'

You can also define the timezone option to use it when formatting dates:

1
2
3
4
5
# app/config/config.yml
twig:
    date:
        # ...
        timezone: Europe/Paris

Similarly, the default formatting of numeric values can now be defined using the new number_format option under the twig key:

1
2
3
4
5
6
# app/config/config.yml
twig:
    number_format:
        decimals: 2
        decimal_point: ','
        thousands_separator: '.'

Be trained by Symfony experts - 2015-04-10 Paris - 2015-04-10 Paris - 2015-04-10 Paris


About us

What a Symfony developer should know about the framework: News, Jobs, Tweets, Events, Videos,...

Resources

Find us on Twitter

Find us on Facebook