Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get days difference in twig

  • how to get days diffrence from current day.

  • tweetedAt: "2015-02-22 09:56:42".

twig

{% for key,value in data.about %}
{% set tweets_date=(value.tweetedAt|date).date("now").format('%a') %}
{% endfor %}

I have also tried

{% set dd='now'|date('d-m-Y') %}
{% set tweets_date=(value.tweetedAt|date).dd.format('%a') %}

Finally I tried but its giving error:

A hash key must be a quoted string, a number, a name, or an expression enclosed in parentheses (unexpected token "punctuation" of value "{"

{% set difference = {{ date("m/d/Y") }}.diff(date(value.tweetedAt)) %}
{% set leftDays = difference.days %}

Error:

<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
  • how to get diffrence from tweet_date in days ago form.

Updated my project installing twig/extensions via composer

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
like image 276
afeef Avatar asked Jun 15 '15 07:06

afeef


Video Answer


2 Answers

I tried this code and it works.

{% set difference = date(value.tweetedAt|date('Y/m/d')).diff(date('now'|date('Y/m/d'))) %}
{% set leftDays = difference.days %}
like image 148
Kay Avatar answered Sep 22 '22 20:09

Kay


If the date comes from an entity, you can just:

{{ entity.days }}

And in your entity just implement:

public function getDays()
{
    return $this->date->diff(new DateTime)->format('%a');
}
like image 36
Elier Avatar answered Sep 19 '22 20:09

Elier