mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
edd2a0da13
commit
5d6a74a783
1 changed files with 23 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue