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


PHP Exception::getTemplate方法代码示例

本文整理汇总了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();
 }
开发者ID:readona,项目名称:symphonyno5,代码行数:22,代码来源:class.symphony.php

示例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();
 }
开发者ID:benesch,项目名称:hilton-unar,代码行数:19,代码来源:class.symphony.php


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