mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
- Promote this BC break to a <caution>
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@132966 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
155ec22d2a
commit
dbeb9c203d
1 changed files with 12 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.64 $ -->
|
||||
<!-- $Revision: 1.65 $ -->
|
||||
<chapter id="language.variables">
|
||||
<title>Variables</title>
|
||||
|
||||
|
@ -267,15 +267,19 @@ $bar = &test(); // Invalid.
|
|||
<listitem>
|
||||
<simpara>
|
||||
Variables provided to the script via the GET, POST, and COOKIE input
|
||||
mechanisms, and which therefore cannot be trusted. Since PHP 4.3.0,
|
||||
FILE information does not exist in <varname>$_REQUEST</varname>. The
|
||||
presence and order of variable inclusion in this array is defined
|
||||
according to the PHP
|
||||
<link linkend="ini.variables-order">variables_order</link>
|
||||
configuration directive. This array has no direct analogue in
|
||||
versions of PHP prior to 4.1.0. See also
|
||||
mechanisms, and which therefore cannot be trusted. The presence and
|
||||
order of variable inclusion in this array is defined according to the
|
||||
PHP <link linkend="ini.variables-order">variables_order</link>
|
||||
configuration directive. This array has no direct analogue in versions
|
||||
of PHP prior to 4.1.0. See also
|
||||
<function>import_request_variables</function>.
|
||||
</simpara>
|
||||
<caution>
|
||||
<simpara>
|
||||
Since PHP 4.3.0, FILE information from <varname>$_FILES</varname> does
|
||||
not exist in <varname>$_REQUEST</varname>.
|
||||
</simpara>
|
||||
</caution>
|
||||
<note>
|
||||
<simpara>
|
||||
When running on the <link linkend="features.commandline">command line
|
||||
|
|
Loading…
Reference in a new issue