philip Thu Mar 31 12:49:33 2005 EDT
Modified files: /phpdoc/en/appendices ini.xml Log: Grammar/clarity/tags to "post_max_size is exceeded", and added auto_globals_jit info. http://cvs.php.net/diff.php/phpdoc/en/appendices/ini.xml?r1=1.17&r2=1.18&ty=u Index: phpdoc/en/appendices/ini.xml diff -u phpdoc/en/appendices/ini.xml:1.17 phpdoc/en/appendices/ini.xml:1.18 --- phpdoc/en/appendices/ini.xml:1.17 Thu Mar 31 04:59:45 2005 +++ phpdoc/en/appendices/ini.xml Thu Mar 31 12:49:30 2005 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.17 $ --> +<!-- $Revision: 1.18 $ --> <appendix id="ini"> <title>&php.ini; directives</title> @@ -2449,6 +2449,12 @@ <entry></entry> </row> <row> + <entry>auto_globals_jit</entry> + <entry>"1"</entry> + <entry>PHP_INI_PERDIR</entry> + <entry>Available since PHP 5.0.0.</entry> + </row> + <row> <entry>register_globals</entry> <entry>"0"</entry> <entry>PHP_INI_PERDIR</entry> @@ -2714,11 +2720,13 @@ &ini.shorthandbytes; <simpara> - 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. <literal><form action="edit.php?processed=1"></literal> - and cheching this variable. + If the size of post data is greater than post_max_size, the + <varname>$_POST</varname> and <varname>$_FILES</varname> + <link linkend="language.variables.superglobals">superglobals</link> + are empty. This can be tracked in various ways, e.g. by passing the + <varname>$_GET</varname> variable to the script processing the data, + i.e. <literal><form action="edit.php?processed=1"></literal>, + and then checking if <varname>$_GET['processed']</varname> is set. </simpara> </listitem> </varlistentry>