Document enable_post_data_reading

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@321136 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Hannes Magnusson 2011-12-18 17:16:51 +00:00
parent edd2a0da13
commit 5d6a74a783

View file

@ -2394,6 +2394,12 @@
<entry>PHP_INI_ALL</entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.enable-post-data-reading">enable_post_data_reading</link></entry>
<entry>On</entry>
<entry>PHP_INI_SYSTEM|PHP_INI_PERDIR</entry>
<entry>Available since PHP 5.4.0.</entry>
</row>
<row>
<entry><link linkend="ini.post-max-size">post_max_size</link></entry>
<entry>"8M"</entry>
@ -4557,6 +4563,23 @@ auto_prepend_file=security.php
</listitem>
</varlistentry>
<varlistentry xml:id="ini.enable-post-data-reading">
<term>
<parameter>enable_post_data_reading</parameter>
<type>boolean</type>
</term>
<listitem>
<simpara>
Disabling this option causes <varname>$_POST</varname> and
<varname>$_FILES</varname> <emphasis>not</emphasis> to be populated.
The only way to read postdata will then be through the
<link linkend="wrappers.php">php://input</link> stream wrapper.
This can be useful to proxy requests or to process
the POST data in a memory efficient fashion.
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id="ini.post-max-size">
<term>
<parameter>post_max_size</parameter>