php ini -在php的最大执行时间超过时间限制


php ini - In php max execution time exceed time limit

我在8080端口的本地主机上工作。

我收到致命错误max执行时间超过时间限制60秒。

我已经将php.ini文件更改为max_execution_time=1000,我仍然得到相同的错误。

当我尝试导入。

设置为max_execution_time = -1或者设置为ini_set('max_execution_time', -1);

改为:

ini_set('max_execution_time', 0);

基本上意味着它将永远运行,如果有帮助,请反馈。

  php_value session.gc_maxlifetime 1200

我尝试使用

来增加执行时间
  set_time_limit(0)

it works thanks