You are here

public function Time::getCurrentTime in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/Datetime/Time.php \Drupal\Component\Datetime\Time::getCurrentTime()
  2. 9 core/lib/Drupal/Component/Datetime/Time.php \Drupal\Component\Datetime\Time::getCurrentTime()

Returns the current system time as an integer.

This method should be used to obtain the current system time, at the time the method was called.

This method can replace many instances of

$time = time();

with

$request_time = \Drupal::time()
  ->getCurrentTime();

or the equivalent using the injected service.

This method should only be used when the current system time is actually needed, such as with timers or time interval calculations. If only the time at the start of the request is needed, use TimeInterface::getRequestTime().

Using the time service, rather than other methods, is especially important when creating tests, which require predictable timestamps.

Return value

int A Unix timestamp.

Overrides TimeInterface::getCurrentTime

See also

\Drupal\Component\Datetime\TimeInterface::getRequestTime()

\Drupal\Component\Datetime\TimeInterface::getRequestMicroTime()

\Drupal\Component\Datetime\TimeInterface::getCurrentMicroTime()

1 call to Time::getCurrentTime()
Time::getRequestTime in core/lib/Drupal/Component/Datetime/Time.php
Returns the timestamp for the current request.

File

core/lib/Drupal/Component/Datetime/Time.php, line 58

Class

Time
Provides a class for obtaining system time.

Namespace

Drupal\Component\Datetime

Code

public function getCurrentTime() {
  return time();
}