PHP Fatal error allowed memory size exhausted

前端 未结 5 591
故里飘歌
故里飘歌 2021-01-19 21:21

I\'m writing a codeigniter application, upon doing a query i get hit with the following fatal error.

Fatal error: Allowed memory size of 134217728 byt

5条回答
  •  日久生厌
    2021-01-19 22:01

    Put this line on your codeigniter's index.php. So it will be affected for whole project.

    ini_set('memory_limit', '-1');
    

    Note: This is just a quick fix. This bug has not been resolved in php itself.

提交回复
热议问题