如何增加php中的执行超时?

如何增加交易超时时间?我想上传视频,但是没有上传大尺寸的视频?

引发错误 The process *** exceeded the timeout of 60 seconds.

回答:

您需要在php.ini中更改一些设置:

upload_max_filesize = 2M 

;or whatever size you want

max_execution_time = 60

; also, higher if you must - sets the maximum time in seconds

以上是 如何增加php中的执行超时? 的全部内容, 来源链接: utcz.com/qa/403051.html

回到顶部