运行大型MySQL存储过程时,PHP脚本会自动退出

时间:2015-08-27 10:24:52

标签: php mysql stored-procedures cron

我有一个运行多个MySQL程序的PHP脚本。一个过程需要更多时间来运行并占用高CPU。在运行该过程时,PHP脚本会自动退出。这里有什么问题,如何解决?

我已将所有等待时间和运行时间设置为最大值。

1 个答案:

答案 0 :(得分:0)

确保设置错误报告,最长时间并增加PHP可用的内存:

error_reporting(E_ALL);
ini_set('display_errors', 1);
ini_set('memory_limit','600M');
ini_set('max_execution_time',9999999);