summaryrefslogtreecommitdiff
path: root/php.ini-dist
diff options
context:
space:
mode:
Diffstat (limited to 'php.ini-dist')
-rw-r--r--php.ini-dist6
1 files changed, 6 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist
index 4103409f3e..2186697eb3 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -413,6 +413,12 @@ track_errors = Off
; values override older values.
variables_order = "EGPCS"
+; This directive describes the order in which PHP registers GET, POST and Cookie
+; variables into the _REQUEST array. Registration is done from left to right,
+; newer values override older values.
+; If this directive is not set, variables_order is used for _REQUEST contents.
+; request_order = "GP"
+
; Whether or not to register the EGPCS variables as global variables. You may
; want to turn this off if you don't want to clutter your scripts' global scope
; with user data. This makes most sense when coupled with track_vars - in which