From dbeb9c203d81b108d946ac602d48b4a3969656de Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Sun, 22 Jun 2003 21:34:32 +0000 Subject: [PATCH] - Promote this BC break to a git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@132966 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/variables.xml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/language/variables.xml b/language/variables.xml index 6bc4751af4..fc59f12722 100644 --- a/language/variables.xml +++ b/language/variables.xml @@ -1,5 +1,5 @@ - + Variables @@ -267,15 +267,19 @@ $bar = &test(); // Invalid. 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 $_REQUEST. The - presence and order of variable inclusion in this array is defined - according to the PHP - variables_order - 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 variables_order + configuration directive. This array has no direct analogue in versions + of PHP prior to 4.1.0. See also import_request_variables. + + + Since PHP 4.3.0, FILE information from $_FILES does + not exist in $_REQUEST. + + When running on the command line