【发布时间】:2015-06-15 07:32:57
【问题描述】:
如何获取与当天的天数差异。
tweetedAt:“2015-02-22 09:56:42”。
树枝
{% for key,value in data.about %}
{% set tweets_date=(value.tweetedAt|date).date("now").format('%a') %}
{% endfor %}
我也试过
{% set dd='now'|date('d-m-Y') %}
{% set tweets_date=(value.tweetedAt|date).dd.format('%a') %}
最后我尝试了,但它给出了错误:
哈希键必须是带引号的字符串、数字、名称或括在括号中的表达式(值“{”的意外标记“标点符号”
{% set difference = {{ date("m/d/Y") }}.diff(date(value.tweetedAt)) %}
{% set leftDays = difference.days %}
错误:
<span class="small light_grey">{{tweets_date}}</span>
Impossible to invoke a method ("date") on a string variable ("June 6, 2015 01:06") in AcmeBundle
- 如何在几天前的形式中获取与
tweet_date的差异。
更新了我通过 composer 安装 twig/extensions 的项目
user@intermsh-OptiPlex-380:~$ composer require twig/extensions
Warning: This development build of composer is over 30 days old. It is recommended to update it by running "/usr/local/bin/composer self-update" to get the latest version.
Using version ~1.2 for twig/extensions
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
- Installing twig/twig (v1.18.2)
Downloading: 100%
- Installing twig/extensions (v1.2.0)
Downloading: 100%
Downloading: 100%
twig/extensions suggests installing symfony/translation (Allow the time_diff output to be translated)
Writing lock file
Generating autoload files
【问题讨论】:
-
为什么不在后端计算呢?它将为您提供更大的灵活性,并且您可以在以后轻松更改它而无需触摸模板。
-
我认为 symfony 无法解决日期差异
-
好吧,你在这里并不需要 Symfony2 的自定义功能——你可以用纯 PHP 做到这一点。看看这个解决方案stackoverflow.com/questions/1416697/…
-
你能帮忙找出天差吗
-
我发了推文:“2015-02-22 09:56:42”。日期
标签: php symfony twig twig-extension