You are here

function format_date in Drupal 8

Same name and namespace in other branches
  1. 4 includes/common.inc \format_date()
  2. 5 includes/common.inc \format_date()
  3. 6 includes/common.inc \format_date()
  4. 7 includes/common.inc \format_date()

Formats a date, using a date type or a custom date format string.

Parameters

$timestamp: A UNIX timestamp to format.

$type: (optional) The format to use, one of:

  • One of the built-in formats: 'short', 'medium', 'long', 'html_datetime', 'html_date', 'html_time', 'html_yearless_date', 'html_week', 'html_month', 'html_year'.
  • The name of a date type defined by a date format config entity.
  • The machine name of an administrator-defined date format.
  • 'custom', to use $format.

Defaults to 'medium'.

$format: (optional) If $type is 'custom', a PHP date format string suitable for input to date(). Use a backslash to escape ordinary text, so it does not get interpreted as date format characters.

$timezone: (optional) Time zone identifier, as described at http://php.net/manual/timezones.php Defaults to the time zone used to display the page.

$langcode: (optional) Language code to translate to. Defaults to the language used to display the page.

Return value

A translated date string in the requested format.

Deprecated

in drupal:8.0.0 and is removed from drupal:9.0.0. Use \Drupal::service('date.formatter')->format().

See also

\Drupal\Core\Datetime\DateFormatter::format()

https://www.drupal.org/node/1876852

Related topics

1 call to format_date()
LegacyFunctionsTest::testFormatDate in core/tests/Drupal/KernelTests/Core/Common/LegacyFunctionsTest.php
Tests format_date().
3 string references to 'format_date'
DateField::defineValueProcessPipeline in core/modules/datetime/src/Plugin/migrate/field/DateField.php
Apply any custom processing to the field bundle migrations.
DateField::defineValueProcessPipeline in core/modules/datetime/src/Plugin/migrate/field/d6/DateField.php
Apply any custom processing to the field bundle migrations.
TwigExtension::getFilters in core/lib/Drupal/Core/Template/TwigExtension.php

File

core/includes/common.inc, line 332
Common functions that many Drupal modules will need to reference.

Code

function format_date($timestamp, $type = 'medium', $format = '', $timezone = NULL, $langcode = NULL) {
  @trigger_error("format_date() is deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use \\Drupal::service('date.formatter')->format() instead. See https://www.drupal.org/node/1876852", E_USER_DEPRECATED);
  return \Drupal::service('date.formatter')
    ->format($timestamp, $type, $format, $timezone, $langcode);
}