如何使用Twig将日期转换为UNIX时间戳?

时间:2021-05-29 04:15:46

I need to convert a date to a UNIX timestamp in a Twig template:

我需要将日期转换为Twig模板中的UNIX时间戳:

 <li>{{ user.expired }}</li>

Is there a function in Twig to do it?

在Twig中有功能吗?

1 个解决方案

#1


51  

There is the built-in date filter in Twig. You can pass any strtotime-compatible argument.

Twig中有内置的日期过滤器。您可以传递任何与strtotime兼容的参数。

 <li>{{ user.expired | date('U') }}</li>

U is the pattern that will display the unix timestamp.

U是将显示unix时间戳的模式。

#1


51  

There is the built-in date filter in Twig. You can pass any strtotime-compatible argument.

Twig中有内置的日期过滤器。您可以传递任何与strtotime兼容的参数。

 <li>{{ user.expired | date('U') }}</li>

U is the pattern that will display the unix timestamp.

U是将显示unix时间戳的模式。