本文整理汇总了PHP中Exception::getTemplate方法的典型用法代码示例。如果您正苦于以下问题:PHP Exception::getTemplate方法的具体用法?PHP Exception::getTemplate怎么用?PHP Exception::getTemplate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Exception
的用法示例。
在下文中一共展示了Exception::getTemplate方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: render
/**
* The render function will take a `SymphonyErrorPage` exception and
* output a HTML page. This function first checks to see if their is a custom
* template for this exception otherwise it reverts to using the default
* `usererror.generic.php`
*
* @param SymphonyErrorPage $e
* The Exception object
* @return string
* An HTML string
*/
public static function render(Exception $e)
{
if ($e->getTemplate() === false) {
if (isset($e->getAdditional()->header)) {
header($e->getAdditional()->header);
}
echo '<h1>Symphony Fatal Error</h1><p>' . $e->getMessage() . '</p>';
exit;
}
include $e->getTemplate();
}
示例2: render
/**
* The render function will take a SymphonyErrorPage Exception and
* output a HTML page. This function first checks to see if their is a custom
* template for this Exception otherwise it reverts to using the default
* `tpl.error.php`
*
* @param SymphonyErrorPage $e
* The Exception object
* @return string
* An HTML string
*/
public static function render(Exception $e)
{
if ($e->getTemplate() === false) {
echo '<h1>Symphony Fatal Error</h1><p>' . $e->getMessage() . '</p>';
exit;
}
include $e->getTemplate();
}