标签: php memory
当脚本试图分配比允许的内存更多的内存时,有什么方法可以将脚本所具有的值转储到所有变量中?用于调试目的。
答案 0 :(得分:2)
您可以使用此代码:
register_shutdown_function('shutdownFunction'); function shutDownFunction() { if ($error['type'] == 1) { // do your stuff here } }
遇到致命错误时会被调用。