From 97c83c4f4df342514dc5449fbd98e98f98dd8051 Mon Sep 17 00:00:00 2001 From: Dries <dries@buytaert.net> Date: Tue, 22 Nov 2011 20:12:55 -0500 Subject: [PATCH] - Patch #1289208 by minorOffense, skottler, rocket_nova: REQUEST_TIME documentation is misleading. --- core/includes/bootstrap.inc | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc index 9b4667e81d56..70bec28d0bbe 100644 --- a/core/includes/bootstrap.inc +++ b/core/includes/bootstrap.inc @@ -198,10 +198,14 @@ define('LANGUAGE_RTL', 1); /** - * For convenience, define a short form of the request time global. + * Time of the current request in seconds elapsed since the Unix Epoch. * - * REQUEST_TIME is a float with microseconds since PHP 5.4.0, but float - * timestamps confuses most of the PHP functions (including date_create()). + * 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 http://php.net/manual/reserved.variables.server.php + * @see http://php.net/manual/function.time.php */ define('REQUEST_TIME', (int) $_SERVER['REQUEST_TIME']); -- GitLab