function Time::getRequestTime

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Component/Datetime/Time.php \Drupal\Component\Datetime\Time::getRequestTime()
  2. 8.9.x core/lib/Drupal/Component/Datetime/Time.php \Drupal\Component\Datetime\Time::getRequestTime()
  3. 11.x core/lib/Drupal/Component/Datetime/Time.php \Drupal\Component\Datetime\Time::getRequestTime()
1 call to Time::getRequestTime()
TestTime::getRequestTime in core/modules/update/tests/modules/update_test/src/Datetime/TestTime.php
1 method overrides Time::getRequestTime()
TestTime::getRequestTime in core/modules/update/tests/modules/update_test/src/Datetime/TestTime.php

File

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

Class

Time
Provides a class for obtaining system time.

Namespace

Drupal\Component\Datetime

Code

public function getRequestTime() {
    $request = $this->requestStack ? $this->requestStack
        ->getCurrentRequest() : NULL;
    if ($request) {
        return $request->server
            ->get('REQUEST_TIME');
    }
    // If this is called prior to the request being pushed to the stack fallback
    // to built-in globals (if available) or the system time.
    return $_SERVER['REQUEST_TIME'] ?? $this->getProxyRequestTime();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.