This example describes the date usage in twig of symfony2.4. Share it with you for your reference. The details are as follows: Obtain the current time: {now | date (Y-m-d )}} get the variable in twig for three days {+ 3day | date (Y-m-d)} or date (+ 3 days)
This example describes the date usage in twig of symfony2.4. Share it with you for your reference. The details are as follows: Obtain the current time: {"now" | date ("Y-m-d ")}} // get the time after three days in {"+ 3 day" | date ('Y-m-d ')}} // 2014-03-09 // or date ('+ 3days') // perform the twig variable
This example describes the date usage in twig of symfony2.4. We will share this with you for your reference. The details are as follows:
Obtain the current time:
{{ "now"|date("Y-m-d") }} //2014-03-06
Get three days later
{"+ 3 day" | date ('Y-m-d')} // 2014-03-09 // or date ('+ 3days ') //
Process Variables in twig:
{{ var|date("Y-m-d") }} //2014-03-06
Date_modify usage:
{{ var|date_modify("+1 day")|date("Y-m-d") }} //2014-03-07
If the var variable is empty and the default value is set, the following syntax is available:
{{ var is empty ? "" : var|date("Y-m-d") }}
Set Time Zone
{Var | date ("Y-m-d", "Europe/Paris ")}} // set the time zone to Paris, Europe {var | date ("Y-m-d", false)} // set the current time zone
I hope this article will help you design PHP programs based on the Symfony framework.