constant REQUEST_TIME in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/includes/bootstrap.inc \REQUEST_TIME
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
148 uses of REQUEST_TIME
- AggregatorController::adminOverview in core/
modules/ aggregator/ src/ Controller/ AggregatorController.php - Displays the aggregator administration page.
- aggregator_cron in core/
modules/ aggregator/ aggregator.module - Implements hook_cron().
- AliasManager::getRequestTime in core/
lib/ Drupal/ Core/ Path/ AliasManager.php - Wrapper method for REQUEST_TIME constant.
- ApcuBackend::invalidateAll in core/
lib/ Drupal/ Core/ Cache/ ApcuBackend.php - Marks all cache items as invalid.
- ApcuBackend::invalidateMultiple in core/
lib/ Drupal/ Core/ Cache/ ApcuBackend.php - Marks cache items as invalid.
File
- core/
includes/ bootstrap.inc, line 84 - Functions that need to be loaded on every Drupal request.
Code
define('REQUEST_TIME', (int) $_SERVER['REQUEST_TIME']);