From f736e8d6c8c23d96d27a5035a0bbaeaecad35083 Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Wed, 4 Feb 2004 17:47:00 +0000 Subject: [PATCH] fix #24323 added max_inout_time git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@150510 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/info/functions/set-time-limit.xml | 14 ++++++++----- reference/info/ini.xml | 23 +++++++++++++++++++-- 2 files changed, 30 insertions(+), 7 deletions(-) diff --git a/reference/info/functions/set-time-limit.xml b/reference/info/functions/set-time-limit.xml index 66ed3acab0..eef37c8f43 100644 --- a/reference/info/functions/set-time-limit.xml +++ b/reference/info/functions/set-time-limit.xml @@ -1,5 +1,5 @@ - + @@ -41,12 +41,16 @@ linkend="ini.max-execution-time">max_execution_time only affect the execution time of the script itself. Any time spent on activity that happens outside the execution of the script - such as system calls using system, the - sleep function, database queries, etc. is - not included when determining the maximum time that the script - has been running. + such as system calls using system, stream + operations, database queries, etc. is not included when determining the + maximum time that the script has been running. + + See also: max_execution_time and max_input_time ini directives. + diff --git a/reference/info/ini.xml b/reference/info/ini.xml index c16482d87f..e5852242ea 100644 --- a/reference/info/ini.xml +++ b/reference/info/ini.xml @@ -1,5 +1,5 @@ - +
&reftitle.runtime; &extension.runtime; @@ -50,6 +50,11 @@ "30" PHP_INI_ALL + + max_input_time + "60" + PHP_INI_ALL + magic_quotes_gpc "1" @@ -171,7 +176,7 @@ The maximum execution time is not affected by system calls, - the sleep function, etc. Please see the + stream operations etc. Please see the set_time_limit function for more details. @@ -183,6 +188,20 @@ + + + max_input_time + integer + + + + This sets the maximum time in seconds a script is allowed to + receive input data, like POST, GET and file uploads. The default setting + is 60. + + + + magic_quotes_gpc