我创建了这个:
<?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 ...