Laravel DB Insert Error: Allowed Memory Size Exhausted

前端 未结 2 1169
广开言路
广开言路 2021-01-05 16:48

I\'m running into an issue when trying to insert ~20K records into my DB. I notice that even though I\'m echoing inside my foreach loop, I\'m not getting anything outputted

2条回答
  •  走了就别回头了
    2021-01-05 17:39

    This error depicts that your PHP script has exhausted memory limit due to insufficient memory allocated for script.

    You need to increase memory_limit using the ini_set function e.g ini_set('memory_limit','128M');

提交回复
热议问题