From a9fe1010d2837cb2a02ef70156718603c3693cbd Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Wed, 12 Mar 2008 20:24:45 +0000 Subject: [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 --- php.ini-dist | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'php.ini-dist') 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 -- cgit v1.2.1