本文整理汇总了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());
}
示例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);
}
示例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));
}
}
示例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;
}
}
示例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());
}
示例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;
}