REQUEST_TIME

  1. drupal
    1. 7 includes/bootstrap.inc
    2. 8 core/includes/bootstrap.inc

Time of the current request in seconds elapsed since the Unix Epoch.

This differs from $_SERVER['REQUEST_TIME'], which is stored as a float since PHP 5.4.0. Float timestamps confuse most PHP functions (including date_create()).

See also

http://php.net/manual/reserved.variables.server.php

http://php.net/manual/function.time.php

File

includes/bootstrap.inc, line 203
Functions that need to be loaded on every Drupal request.

Code

define('REQUEST_TIME', (int) $_SERVER['REQUEST_TIME'])
Login or register to post comments