mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Document max_input_nesting_level
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@236107 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
60051bd828
commit
7714a971a4
3 changed files with 44 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.52 $ -->
|
||||
<!-- $Revision: 1.53 $ -->
|
||||
|
||||
<appendix id="ini">
|
||||
<title>&php.ini; directives</title>
|
||||
|
@ -1205,6 +1205,12 @@
|
|||
<entry>PHP_INI_PERDIR</entry>
|
||||
<entry>Available since PHP 4.3.0.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="ini.max-input-nesting-level">max_input_nesting_level</link></entry>
|
||||
<entry>"64"</entry>
|
||||
<entry>PHP_INI_SYSTEM|PHP_INI_PERDIR</entry>
|
||||
<entry>Available since PHP 5.2.2.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><link linkend="ini.mbstring.detect-order">mbstring.detect_order</link></entry>
|
||||
<entry>NULL</entry>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<appendix id="migration52">
|
||||
<title>Migrating from PHP 5.1.x to PHP 5.2.x</title>
|
||||
|
||||
|
@ -1741,6 +1741,20 @@ $obj->getCommentName('');
|
|||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
<para>
|
||||
New directives in PHP 5.2.2:
|
||||
</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<link linkend="ini.max-input-nesting-level">max_input_nesting_level</link>
|
||||
</simpara>
|
||||
<simpara>
|
||||
Limits how deep <link linkend="language.variables.external">input
|
||||
variables</link> can be nested, default is 64.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</section>
|
||||
|
||||
<section id="migration52.errorrep">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.15 $ -->
|
||||
<!-- $Revision: 1.16 $ -->
|
||||
<section id="info.configuration">
|
||||
&reftitle.runtime;
|
||||
&extension.runtime;
|
||||
|
@ -64,6 +64,12 @@
|
|||
<entry>PHP_INI_PERDIR</entry>
|
||||
<entry>Available since PHP 4.3.0.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>max_input_nesting_level</entry>
|
||||
<entry>"64"</entry>
|
||||
<entry>PHP_INI_SYSTEM|PHP_INI_PERDIR</entry>
|
||||
<entry>Available since PHP 5.2.2.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>magic_quotes_gpc</entry>
|
||||
<entry>"1"</entry>
|
||||
|
@ -216,6 +222,21 @@
|
|||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="ini.max-input-nesting-level">
|
||||
<term>
|
||||
<parameter>max_input_nesting_level</parameter>
|
||||
<type>integer</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
Sets the max nesting dept of
|
||||
<link linkend="language.variables.external">input variables</link> (i.e.
|
||||
<link linkend="reserved.variables.get"><varname>$_GET</varname></link>,
|
||||
<link linkend="reserved.variables.post"><varname>$_POST</varname></link>..)
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="ini.magic-quotes-gpc">
|
||||
<term>
|
||||
<parameter>magic_quotes_gpc</parameter>
|
||||
|
|
Loading…
Reference in a new issue