Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I get timestamp value in Twig?

Tags:

twig

symfony

How can I get timestamp value in twig as I know date formatting is possible in twig but don't know how to get timestamp value using twig function;

like image 726
Md Mehedi Hasan Avatar asked Apr 01 '14 11:04

Md Mehedi Hasan


2 Answers

There is other solution that might be easier to understand by designers.

{{ 'now'|date('U') }}

(I am aware that the question is already answered and it's old)

like image 72
greg Avatar answered Oct 10 '22 20:10

greg


You can use this

{{ date().timestamp }}

like image 24
xiidea Avatar answered Oct 10 '22 21:10

xiidea