Home > php教程 > php手册 > body text

symfony2.4的twig中date用法分析

WBOY
Release: 2016-06-06 19:32:48
Original
800 people have browsed it

本文实例讲述了symfony2.4的twig中date用法。分享给大家供大家参考,具体如下: 获得当前时间: {{ "now"|date("Y-m-d") }} //2014-03-06 获得三天后的时间 {{ "+3 day"|date('Y-m-d') }} //2014-03-09//或者date('+3days') //2014-03-09 对twig中的变量进行

本文实例讲述了symfony2.4的twig中date用法。分享给大家供大家参考,具体如下:

获得当前时间:

{{ "now"|date("Y-m-d") }} //2014-03-06

Copy after login

获得三天后的时间

{{ "+3 day"|date('Y-m-d') }} //2014-03-09
//或者
date('+3days') //2014-03-09

Copy after login

对twig中的变量进行处理:

{{ var|date("Y-m-d") }} //2014-03-06

Copy after login

date_modify用法:

{{ var|date_modify("+1 day")|date("Y-m-d") }} //2014-03-07

Copy after login

如果 var 变量为空,设置默认值 ,则可用下面的语法:

{{ var is empty ? "" : var|date("Y-m-d") }}

Copy after login

设置时区

{{ var|date("Y-m-d", "Europe/Paris") }} //设置时区为欧洲巴黎
{{ var|date("Y-m-d", false) }} //设置当前时区

Copy after login

希望本文所述对大家基于Symfony框架的PHP程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!