; Maximum execution time of each script, in seconds ; http://php.net/max-execution-time ; Note: This directive is hardcoded to 0 for the CLI SAPI max_execution_time = 80 ; 意思就是每个脚本最大执行时间,单位为秒,这个根据你服务器的配置来吧,配置低就设大点 ; 不然脚本还没执行完就被关闭你都不知道错哪儿
; Maximum amount of time each script may spend parsing request data. Its 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 = 90 ; 每个脚本在处理请求数据时所能运行的最大时间,官方建议限制这个时间以防止始料未及的长时间 ; 的脚本运行,但是 who care ,我想要我的大文件传上去,但我网速不好,所以我只能多给她点时间了