I could not find this in the docs, but:
max_input_time = -1
mean there is no limit?
It seems strange to me that max_execution_time = 0forever.
max_execution_time = 0
But what does it mean -1for max_input_time?
-1
max_input_time
A quick look at the file php.iniwill show you:
php.ini
; Maximum amount of time each script may spend parsing request data. It a good ; idea to limit this time on productions servers in order to eliminate unexpectedly ; long running scripts. ; Note: This directive is hardcoded to -1 for the CLI SAPI ; Default Value: -1 (Unlimited) ; Development Value: 60 (60 seconds) ; Production Value: 60 (60 seconds) ; http://php.net/max-input-time max_input_time=60
So, as you may have guessed correctly:
; Default Value: -1 (Unlimited) //^^^^^^^^^^^^^^
You can see the files php.inifor production and development on github :
In php.iniyou will find the answer to your question:
this means -1 unlimited , because no script can be executed with negative time.
0 , script .
0
, :
max_input_time, script , POST GET. , PHP , . - -1, , max_execution_time. 0, .
, script , POST GET. , PHP , . - -1, , max_execution_time. 0, .
: http://php.net/manual/en/info.configuration.php#ini.max-input-time
, , , php.ini, .
max_input_time = -1 , , .
max_input_time = -1 as the maximum value. This is 2147483647 in PHP 5.4
Source: https://habr.com/ru/post/1589064/More articles:Which Node module provides the CLI prompt? - node.jsSQLAlchemy error: "Argument formats cannot be mixed" when entering variables - pythonPyArray_SimpleNewFromData example - c ++Replace-root-view-controller custom segue with animation? - iosHow to register my WP device in dev account? - windows-phone$ stateChangeSuccess gets hit twice - angularjschange button background color on click - WatchKit - iosPython: finding a pattern in a string - pythonDisable PhoneGap Caching - javascriptWhere to taunt to check the view of Django that calls the service? - pythonAll Articles