PHP Fatal error: Out of memory (allocated 80740352) (tried to allocate 12352 bytes) in

前端 未结 4 1550
时光说笑
时光说笑 2020-11-30 11:36

I get this error when users are uploading images on my site.

error msg is \"PHP Fatal error: Out of memory (allocated 80740352) (tried to allocate 12352 bytes) in /

4条回答
  •  执念已碎
    2020-11-30 12:11

    set_time_limit(0);
    ini_set('memory_limit', '20000M');
    

    To the top of your script. Change the 20000M accordingly.

提交回复
热议问题