diff options
Diffstat (limited to 'php.ini-recommended')
-rw-r--r-- | php.ini-recommended | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/php.ini-recommended b/php.ini-recommended index 5b48c8aa68..057b4a1706 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -464,6 +464,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" + ; 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 |