rasmus Thu, 09 Feb 2012 20:04:49 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=323142
Log:
Document exit_on_timeout
Changed paths:
U phpdoc/en/trunk/appendices/ini.core.xml
U phpdoc/en/trunk/appendices/ini.list.xml
Modified: phpdoc/en/trunk/appendices/ini.core.xml
===================================================================
--- phpdoc/en/trunk/appendices/ini.core.xml 2012-02-09 17:44:29 UTC (rev 323141)
+++ phpdoc/en/trunk/appendices/ini.core.xml 2012-02-09 20:04:49 UTC (rev 323142)
@@ -104,6 +104,12 @@
<entry>Available since PHP 4.3.2.</entry>
</row>
<row>
+ <entry><link linkend="ini.exit-on-timeout">exit_on_timeout</link></entry>
+ <entry>""</entry>
+ <entry>PHP_INI_ALL</entry>
+ <entry>Available since PHP 5.3.0.</entry>
+ </row>
+ <row>
<entry><link linkend="ini.expose-php">expose_php</link></entry>
<entry>"1"</entry>
<entry>&php.ini; only</entry>
@@ -373,6 +379,20 @@
</para>
</listitem>
</varlistentry>
+
+ <varlistentry xml:id="ini.exit-on-timeout">
+ <term>
+ <parameter>exit_on_timeout</parameter>
+ <type>boolean</type>
+ </term>
+ <listitem>
+ <para>
+ This is an Apache1 mod_php-only directive that forces an Apache child to exit if a PHP execution timeout occurred.
+ Such a timeout causes an internal longjmp() call in Apache1 which can leave some extensions in an inconsistent
+ state. By terminating the process any outstanding locks or memory will be cleaned up.
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</para>
Modified: phpdoc/en/trunk/appendices/ini.list.xml
===================================================================
--- phpdoc/en/trunk/appendices/ini.list.xml 2012-02-09 17:44:29 UTC (rev 323141)
+++ phpdoc/en/trunk/appendices/ini.list.xml 2012-02-09 20:04:49 UTC (rev 323142)
@@ -761,6 +761,12 @@
<entry>Available since PHP 4.3.0.</entry>
</row>
<row>
+ <entry><link linkend="ini.exit-on-timeout">exit_on_timeout</link></entry>
+ <entry>""</entry>
+ <entry>PHP_INI_ALL</entry>
+ <entry>Available since PHP 5.3.0</entry>
+ </row>
+ <row>
<entry><link linkend="ini.expect.logfile">expect.logfile</link></entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
|