/** * 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. }
[李景山php]每天laravel-20161103|CompilerEngine.php-2
原创
©著作权归作者所有:来自51CTO博客作者lijingsan1的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章