当前位置: 首页>>代码示例>>PHP>>正文


PHP ExceptionHandler::getHtml方法代码示例

本文整理汇总了PHP中Symfony\Component\Debug\ExceptionHandler::getHtml方法的典型用法代码示例。如果您正苦于以下问题:PHP ExceptionHandler::getHtml方法的具体用法?PHP ExceptionHandler::getHtml怎么用?PHP ExceptionHandler::getHtml使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Symfony\Component\Debug\ExceptionHandler的用法示例。


在下文中一共展示了ExceptionHandler::getHtml方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: handleWithSymfony

 protected function handleWithSymfony(Exception $exception)
 {
     if (!$exception instanceof FlattenException) {
         $exception = FlattenException::create($exception);
     }
     $handler = new ExceptionHandler($this->debug);
     return Response::create($handler->getHtml($exception), $exception->getStatusCode(), $exception->getHeaders());
 }
开发者ID:autarky,项目名称:framework,代码行数:8,代码来源:DefaultErrorHandler.php

示例2: onSilexError

 public function onSilexError(GetResponseForExceptionEvent $event)
 {
     $handler = new DebugExceptionHandler($this->debug);
     $exception = $event->getException();
     if (!$exception instanceof FlattenException) {
         $exception = FlattenException::create($exception);
     }
     $response = Response::create($handler->getHtml($exception), $exception->getStatusCode(), $exception->getHeaders())->setCharset(ini_get('default_charset'));
     $event->setResponse($response);
 }
开发者ID:abdonor,项目名称:silex_simple_api,代码行数:10,代码来源:ExceptionHandler.php

示例3: __toString

 public function __toString()
 {
     try {
         return parent::__toString();
         // TODO: Change the autogenerated stub
     } catch (\Exception $exc) {
         ExceptionHelper::logException($exc);
         $eh = new ExceptionHandler(env('APP_DEBUG'));
         die($eh->getHtml($exc));
     }
 }
开发者ID:despark,项目名称:ignicms,代码行数:11,代码来源:View.php

示例4: minionError

    /**
     * @internal
     *
     * Handle errors and exceptions thrown by entire application.
     *
     * @param \Exception $ex   Any exception
     * @param integer    $code HTTP status code
     *
     * @return Response Response to the client with nice error page
     */
    public function minionError(\Exception $ex, $code)
    {
        $handler = new ExceptionHandler($this['debug']);
        $exception = FlattenException::create($ex);
        $response = Response::create($handler->getHtml($exception), $code, $exception->getHeaders())->setCharset(\ini_get('default_charset'));
        if ($this['debug']) {
            return $response;
        } else {
            $content = <<<'HTML'
<!DOCTYPE html>
<html>
    <head><title>Error %d</title></head>
    <body><h1>Error %d occured</h1></body>
</html>
HTML;
            if ($this['minion.useTwig']) {
                $twig = $this['twig'];
                $tpl = "Static/{$code}.html.twig";
                if (!Utils::templateExists($twig, $tpl)) {
                    $content = \str_replace('%d', $code, $content);
                } else {
                    $content = $twig->render($tpl, ['exception' => $ex]);
                }
            } elseif (\file_exists($tpl = Utils::fixPath($this->getRootDir() . "/Static/{$code}.html.php"))) {
                $content = Utils::renderPhpTemplate($tpl, ['exception' => $ex]);
            }
            $response->setStatusCode($code);
            $response->setContent($content);
            return $response;
        }
    }
开发者ID:dszczer,项目名称:Minion,代码行数:41,代码来源:Application.php

示例5: convertExceptionToResponse

 /**
  * @param \Exception $exception
  *
  * @return \Symfony\Component\HttpFoundation\Response
  */
 protected function convertExceptionToResponse(Exception $exception)
 {
     $exception = FlattenException::create($exception);
     $handler = new SymfonyExceptionHandler($this->configuration->get('app.debug'));
     return SymfonyResponse::create($handler->getHtml($exception), $exception->getStatusCode(), $exception->getHeaders());
 }
开发者ID:notadd,项目名称:framework,代码行数:11,代码来源:Handler.php

示例6: __toString

 /**
  * @return string
  */
 public function __toString()
 {
     try {
         $this->beforeToHtml();
         $html = $this->toHtml();
         $html = $this->afterToHtml($html);
     } catch (\Exception $exc) {
         $eh = new ExceptionHandler(env('APP_DEBUG'));
         die($eh->getHtml($exc));
     }
     return $html;
 }
开发者ID:despark,项目名称:ignicms,代码行数:15,代码来源:Field.php


注:本文中的Symfony\Component\Debug\ExceptionHandler::getHtml方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。