我有一个类似于以下的代码,但它不起作用。
class Abc extends CI_Controller {
static function exception_handler(Exception $ex)
{
var_dump($ex);
echo $ex->getMessage();
exit;
}
function __construct()
{
parent::__construct();
set_exception_handler('exception_handler');
}
function Index()
{
throw new Exception('hehe');
}
}
我明白了
遇到 PHP 错误
严重性:警告
消息:set_exception_handler() 期望参数 (exception_handler) 是一个有效的回调
如何在 codeigniter 中使用 set_exception_handler