PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 41007872 bytes)

前端 未结 4 671
半阙折子戏
半阙折子戏 2021-01-24 15:26

I\'m getting this error when I try to call the mail() function.

I tried adding ini_set(\'memory_limit\', \'64m\') to my index.php file - Which include()\'s

4条回答
  •  梦谈多话
    2021-01-24 16:09

    (33 554 432 bytes) + (41 007 872 bytes) = 71.1081543 megabytes

    Set your memory_limit to 96M and call it a day!

提交回复
热议问题