How to recover from a fatal error “Allowed memory size exhausted”

前端 未结 7 931
梦如初夏
梦如初夏 2021-01-04 08:52

Do you know any solution to recover from the PHP fatal error : \"Allowed memory size ... exhausted\"

I have a shutdown function that is called when a fatal

7条回答
  •  感情败类
    2021-01-04 09:17

    This worked fine for me:

    try {
        ini_set('memory_limit', (ini_get('memory_limit')+1).'M');
    } catch(Exception $e) {}
    

    This assumes your memory limit is in the format 123M.

提交回复
热议问题