diff options
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. |
