So gpc_order is deprecated, use variables_order instead

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@61962 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Gabor Hojtsy 2001-11-11 10:20:40 +00:00
parent 73c63fec93
commit ac7b4e6f0f

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.29 $ -->
<!-- $Revision: 1.30 $ -->
<chapter id="configuration">
<title>Configuration</title>
@ -385,6 +385,31 @@ include_path = ".;c:\php\lib"
and to overwrite any GET method variables with POST-method
variables of the same name.
</para>
<para>
Note, that this option is not available in PHP 4.
Use <link linkend="ini.variables-order">variables_order</link>
instead.
</para>
</listitem>
</varlistentry>
<varlistentry id="ini.variables-order">
<term>
<parameter>variables_order</parameter>
<type>string</type>
</term>
<listitem>
<para>
Set the order of the EGPCS (Environment, GET, POST, Cookie,
Server) variable parsing. The default setting of this
directive is "EGPCS". Setting this to "GP", for example,
will cause PHP to completely ignore environment variables,
cookies and server variables, and to overwrite any GET
method variables with POST-method variables of the same name.
</para>
<para>
See also <link linkend="ini.register-globals">register_globals</link>.
</para>
</listitem>
</varlistentry>