我创造了这个:
<?php
class AppExceptionHandler
{
public static function handle($error)
{
$this->controller->redirect('www.google.com');
//echo 'Oh noes! ' . $error->getMessage();
// ...
}
// ...
}
?>
回声输出正常,但我如何使用布局或视图?我不断得到这个错误:
Fatal error: Using $this when not in object context in ...
答案 0 :(得分:0)
尝试在AppController.php中添加以下方法
public function appError($error) {
//Do whatever you want
debug($error);
}