From 2369737d831d7ea5eca3a7e063f7125848040fb3 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Fri, 18 Jan 2002 21:50:44 +0000 Subject: [PATCH] $_FILES: Documented. Couple other minor changes. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@68063 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/variables.xml | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/language/variables.xml b/language/variables.xml index 155e577594..461e8dbafa 100644 --- a/language/variables.xml +++ b/language/variables.xml @@ -1,5 +1,5 @@ - + Variables @@ -585,15 +585,24 @@ $bar = &test(); // Invalid. about files uploaded via the HTTP POST method. See POST method uploads for information on the contents of - $HTTP_POST_FILES. + $HTTP_POST_FILES. Introduced in 4.0.0. - - $HTTP_POST_FILES is available only in PHP - 4.0.0 and later. - - + + + $_FILES + + + An associative array of variables containing information + about files uploaded via the HTTP POST method. See POST method + uploads for information on the contents of + $_FILES. Introduced in PHP 4.1.0. + + + + $HTTP_ENV_VARS @@ -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 - session_register. Introduced in PHP - 4.1. + session_register. Introduced in PHP 4.1.0.