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