This question already has answers here:
Fatal error: Maximum execution time of 30 seconds exceeded

(16个回答)


4年前关闭。




我上传了一个具有1000行的excel文件,默认情况下,我只有2分钟的执行时间,到那时我可以上传400条记录。
我收到此错误Maximum execution time of 120 seconds exceeded
我如何在yii2框架中修改此期限?

最佳答案

您需要在php.ini中进行更改:

max_execution_time = 500

或在您的php脚本中:
set_time_limit(500); //

10-07 12:38