From b8e106709c0c83c883796efb0afd5bc472ee5501 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Thu, 31 Mar 2005 17:49:30 +0000 Subject: [PATCH] Grammar/clarity/tags to "post_max_size is exceeded", and added auto_globals_jit info. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@183286 c90b9560-bf6c-de11-be94-00142212c4b1 --- appendices/ini.xml | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/appendices/ini.xml b/appendices/ini.xml index 35edbd5419..2ad3837659 100644 --- a/appendices/ini.xml +++ b/appendices/ini.xml @@ -1,5 +1,5 @@ - + &php.ini; directives @@ -2448,6 +2448,12 @@ PHP_INI_ALL + + auto_globals_jit + "1" + PHP_INI_PERDIR + Available since PHP 5.0.0. + register_globals "0" @@ -2714,11 +2720,13 @@ &ini.shorthandbytes; - If the size of post data is greater than post_max_size, $_POST and - $_FILES arrays are empty. You can track this condition various ways, - e.g. by passing $_GET variable to the script processing the data, - i.e. <form action="edit.php?processed=1"> - and cheching this variable. + If the size of post data is greater than post_max_size, the + $_POST and $_FILES + superglobals + are empty. This can be tracked in various ways, e.g. by passing the + $_GET variable to the script processing the data, + i.e. <form action="edit.php?processed=1">, + and then checking if $_GET['processed'] is set.