You are here

public function DateFormatterInterface::formatTimeDiffSince in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Datetime/DateFormatterInterface.php \Drupal\Core\Datetime\DateFormatterInterface::formatTimeDiffSince()

Formats the time difference from a timestamp to the current request time.

Parameters

$timestamp: A UNIX timestamp to compare against the current request time.

array $options: (optional) An associative array with additional options. The following keys can be used:

  • granularity: An integer value that signals how many different units to display in the string. Defaults to 2.
  • langcode: The language code for the language used to format the date. Defaults to NULL, which results in the user interface language for the page being used.
  • strict: A Boolean value indicating whether or not the timestamp can be after the current request time. If TRUE (default) and $timestamp is after the current request time, the result string will be "0 seconds". If FALSE and $timestamp is after the current request time, the result string will be the formatted time difference.

Return value

string A translated string representation of the difference between the given timestamp and the current request time. This interval is always positive.

See also

\Drupal\Core\Datetime\DateFormatterInterface::formatDiff()

\Drupal\Core\Datetime\DateFormatterInterface::formatTimeDiffUntil()

1 method overrides DateFormatterInterface::formatTimeDiffSince()
DateFormatter::formatTimeDiffSince in core/lib/Drupal/Core/Datetime/DateFormatter.php
Formats the time difference from a timestamp to the current request time.

File

core/lib/Drupal/Core/Datetime/DateFormatterInterface.php, line 146
Contains \Drupal\Core\Datetime\DateFormatterInterface.

Class

DateFormatterInterface
Provides an interface defining a date formatter.

Namespace

Drupal\Core\Datetime

Code

public function formatTimeDiffSince($timestamp, $options = array());