继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

CompilerEngine.php-2

哈士奇WWW
关注TA
已关注
手记 556
粉丝 73
获赞 404

/**

     * Handle a view exception.

     *

     * @param  \Exception  $e

     * @param  int  $obLevel

     * @return void

     *

     * @throws $e

     */

    protected function handleViewException(Exception $e, $obLevel)

    {

        $e = new ErrorException($this->getMessage($e), 0, 1, $e->getFile(), $e->getLine(), $e);

// this is ok

        parent::handleViewException($e, $obLevel);

    }//Handle a view exception

 

    /**

     * Get the exception message for an exception.

     *

     * @param  \Exception  $e

     * @return string

     */

    protected function getMessage(Exception $e)

    {

        return $e->getMessage().' (View: '.realpath(last($this->lastCompiled)).')';

       // this is a get message function

    }// Get the exception message for an exception

 

    /**

     * Get the compiler implementation.

     *

     * @return \Illuminate\View\Compilers\CompilerInterface

     */

    public function getCompiler()

    {

        return $this->compiler;// big get

    }// Get the compiler implementation.

}

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP