diff options
author | Reeze Xia <reeze@php.net> | 2014-10-08 23:27:52 +0800 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2014-11-23 16:07:47 -0800 |
commit | 7386b74b075c2a96ef788f0518d8b7aafad91ef5 (patch) | |
tree | 2094bf31e1dda4a0c2ef41983dd94c2ed1f5a63e /php.ini-production | |
parent | 8439eb6277feaa242810ca8808982cc4fba7ffb8 (diff) | |
download | php-git-7386b74b075c2a96ef788f0518d8b7aafad91ef5.tar.gz |
Fix php.ini-*'s comment about directive: request_order
request_order directive only support register G,P,C but not all of
the EGPCS global variables.
The doc <http://php.net/manual/en/ini.core.php#ini.request-order>
is ok.
Diffstat (limited to 'php.ini-production')
-rw-r--r-- | php.ini-production | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/php.ini-production b/php.ini-production index d886985b85..c069756f96 100644 --- a/php.ini-production +++ b/php.ini-production @@ -611,13 +611,13 @@ html_errors = On ; http://php.net/variables-order variables_order = "GPCS" -; This directive determines which super global data (G,P,C,E & S) should -; be registered into the super global array REQUEST. If so, it also determines -; the order in which that data is registered. The values for this directive are -; specified in the same manner as the variables_order directive, EXCEPT one. -; Leaving this value empty will cause PHP to use the value set in the -; variables_order directive. It does not mean it will leave the super globals -; array REQUEST empty. +; This directive determines which super global data (G,P & C) should be +; registered into the super global array REQUEST. If so, it also determines +; the order in which that data is registered. The values for this directive +; are specified in the same manner as the variables_order directive, +; EXCEPT one. Leaving this value empty will cause PHP to use the value set +; in the variables_order directive. It does not mean it will leave the super +; globals array REQUEST empty. ; Default Value: None ; Development Value: "GP" ; Production Value: "GP" |