summaryrefslogtreecommitdiff
path: root/php.ini-recommended
diff options
context:
space:
mode:
Diffstat (limited to 'php.ini-recommended')
-rw-r--r--php.ini-recommended6
1 files changed, 6 insertions, 0 deletions
diff --git a/php.ini-recommended b/php.ini-recommended
index 35584b13e4..ef5c80ba0e 100644
--- a/php.ini-recommended
+++ b/php.ini-recommended
@@ -399,6 +399,12 @@ track_errors = Off
; values override older values.
variables_order = "GPCS"
+; 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"
+
; This directive tells PHP whether to declare the argv&argc variables (that
; would contain the GET information). If you don't use these variables, you
; should turn it off for increased performance.