summaryrefslogtreecommitdiff
path: root/php.ini-dist
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2008-03-12 20:24:45 +0000
committerStanislav Malyshev <stas@php.net>2008-03-12 20:24:45 +0000
commita9fe1010d2837cb2a02ef70156718603c3693cbd (patch)
tree2c09dc45fcc8ae2735e14f657817d849640c11fd /php.ini-dist
parent5076296d8cf5f592a66d309fdd6747096ffc4dae (diff)
downloadphp-git-a9fe1010d2837cb2a02ef70156718603c3693cbd.tar.gz
[DOC] add request_order INI variable to control $_REQUEST content
# if not set (default), variables_order still is used # request_order accepts G,P and C
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