mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
$_FILES: Documented. Couple other minor changes.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@68063 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
2e7f5b8bc5
commit
2369737d83
1 changed files with 17 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.30 $ -->
|
||||
<!-- $Revision: 1.31 $ -->
|
||||
<chapter id="language.variables">
|
||||
<title>Variables</title>
|
||||
|
||||
|
@ -585,15 +585,24 @@ $bar = &test(); // Invalid.
|
|||
about files uploaded via the HTTP POST method. See <link
|
||||
linkend="features.file-upload.post-method">POST method
|
||||
uploads</link> for information on the contents of
|
||||
<varname>$HTTP_POST_FILES</varname>.
|
||||
<varname>$HTTP_POST_FILES</varname>. Introduced in 4.0.0.
|
||||
</simpara>
|
||||
<para>
|
||||
<varname>$HTTP_POST_FILES</varname> is available only in PHP
|
||||
4.0.0 and later.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
|
||||
<varlistentry>
|
||||
<term>$_FILES</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
An associative array of variables containing information
|
||||
about files uploaded via the HTTP POST method. See <link
|
||||
linkend="features.file-upload.post-method">POST method
|
||||
uploads</link> for information on the contents of
|
||||
<varname>$_FILES</varname>. Introduced in PHP 4.1.0.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>$HTTP_ENV_VARS</term>
|
||||
<listitem>
|
||||
|
@ -656,8 +665,7 @@ $bar = &test(); // Invalid.
|
|||
current script. Automatically global in any scope. Creating
|
||||
new entries in the $_SESSION array will automatically
|
||||
register them as session variables, as if you called
|
||||
<function>session_register</function>. Introduced in PHP
|
||||
4.1.
|
||||
<function>session_register</function>. Introduced in PHP 4.1.0.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
|
Loading…
Reference in a new issue