我有一个带有异常处理程序的脚本.该异常处理程序在脚本在异常之后退出之前清理几个连接.
我想从这个异常处理程序重新抛出异常,以便它由PHP自己的最后一个异常处理程序来处理,该异常处理程序会将错误写入PHP的错误日志,或者按照PHP.ini中配置的任何默认值.
不幸的是,这似乎不像这样概述:
http://www.php.net/manual/en/function.set-exception-handler.php#68712
Will cause a Fatal error: Exception thrown without a stack frame
你不能从异常处理程序重新抛出,但是还有其他的地方可以.例如,您可以通过将事情封装到一个自己的类中,然后使用__destruct()函数(PHP 5.3,Demo)将处理程序重新抛出:
原文链接:https://www.f2er.com/php/131459.html<?PHP class ExceptionHandler { private $rethrow; public function __construct() { set_exception_handler(array($this,'handler')); } public function handler($exception) { echo "cleaning up.\n"; $this->rethrow = $exception; } public function __destruct() { if ($this->rethrow) throw $this->rethrow; } } $handler = new ExceptionHandler; throw new Exception();
将其放入我的错误日志中:
[29-Oct-2011 xx:32:25] PHP Fatal error: Uncaught exception 'Exception' in /.../test-exception.PHP:23 Stack trace: #0 {main} thrown in /.../test-exception.PHP on line 23