PHP管理内存不足错误


PHP Manage Out Of Memory Error

在我的代码中,我得到了这个错误:

php fatal error out of memory (allocated ) (tried to allocate bytes)

我尝试将特定的代码插入到try CATCH块中,但程序已经停止执行。

如何处理此错误以确保程序继续执行?

即,注意错误并继续运行

你无法捕捉到这类错误。

你所能做的就是注册一个关机功能来记录这个错误。

https://insomanic.me.uk/php-trick-catching-fatal-errors-e-error-with-a-custom-error-handler-cea2262697a2 .oqtjicwor

php.ini增加内存限制

set_time_limit(0);
ini_set('memory_limit', 'XXM');