function Time::getRequestMicroTime

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Component/Datetime/Time.php \Drupal\Component\Datetime\Time::getRequestMicroTime()
  2. 10 core/lib/Drupal/Component/Datetime/Time.php \Drupal\Component\Datetime\Time::getRequestMicroTime()
  3. 8.9.x core/lib/Drupal/Component/Datetime/Time.php \Drupal\Component\Datetime\Time::getRequestMicroTime()

File

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

Class

Time
Provides a class for obtaining system time.

Namespace

Drupal\Component\Datetime

Code

public function getRequestMicroTime() {
  $request = $this->requestStack
    ->getCurrentRequest();
  if ($request) {
    return $request->server
      ->get('REQUEST_TIME_FLOAT');
  }
  // 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_FLOAT'] ?? $this->getCurrentMicroTime();
}

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