diff options
| author | Stanislav Malyshev <stas@php.net> | 2008-03-12 20:53:04 +0000 |
|---|---|---|
| committer | Stanislav Malyshev <stas@php.net> | 2008-03-12 20:53:04 +0000 |
| commit | c5c4b858df5ce0576c81bca3b1bfc0c1c7fc20e7 (patch) | |
| tree | 2d779b464e4b84ada9fc71310c54123f0d483427 /php.ini-dist | |
| parent | ba05723fd95aa2eace6ac24feaba89781d8a6ffb (diff) | |
| download | php-git-c5c4b858df5ce0576c81bca3b1bfc0c1c7fc20e7.tar.gz | |
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
Diffstat (limited to 'php.ini-dist')
| -rw-r--r-- | php.ini-dist | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist index 6099a3e003..a3dee362f7 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -360,6 +360,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" + ; 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. |
