0

我创建了这个:

<?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 ...
4

1 回答 1

0

尝试在 AppController.php 中添加以下方法

public function appError($error) {
    //Do whatever you want
    debug($error);
}
于 2012-09-24T12:22:32.503 回答