本文整理汇总了PHP中ExceptionHandler::handler方法的典型用法代码示例。如果您正苦于以下问题:PHP ExceptionHandler::handler方法的具体用法?PHP ExceptionHandler::handler怎么用?PHP ExceptionHandler::handler使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ExceptionHandler
的用法示例。
在下文中一共展示了ExceptionHandler::handler方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: handlerIndex
/**
* 简单的自定义处理handler的方法handlerIndex
* 可以不用exceptionHandler类下处理,但前提你你知道自己在做什么
* @param type $e
*/
static function handlerIndex($e)
{
$excepHandler = new ExceptionHandler();
$excepHandler->out['_url'][] = array('url' => '/', 'text' => '返回首页');
$excepHandler->out['_url'][] = array('url' => '/', 'text' => '返回上页');
$excepHandler->tpl = PATH_APP . '/template/index_msg.tpl';
$excepHandler->handler($e);
}
示例2: doTick
public function doTick()
{
if (!$this->rakLib->isTerminated()) {
$this->interface->sendTick();
} else {
$info = $this->rakLib->getTerminationInfo();
$this->network->unregisterInterface($this);
\ExceptionHandler::handler(E_ERROR, "RakLib Thread crashed [" . $info["scope"] . "]: " . (isset($info["message"]) ? $info["message"] : ""), $info["file"], $info["line"]);
}
}
示例3: process
public function process()
{
$work = false;
if ($this->interface->handlePacket()) {
$work = true;
while ($this->interface->handlePacket()) {
}
}
if ($this->rakLib->isTerminated()) {
$info = $this->rakLib->getTerminationInfo();
$this->network->unregisterInterface($this);
\ExceptionHandler::handler(E_ERROR, "RakLib Thread crashed [" . $info["scope"] . "]: " . (isset($info["message"]) ? $info["message"] : ""), $info["file"], $info["line"]);
}
return $work;
}
示例4: exception_handler
/**
* 默认处理exception的方法
* @param Exception $e
*/
function exception_handler(Exception $e)
{
$exceptionHandler = new ExceptionHandler();
$exceptionHandler->handler($e);
}
示例5: SetExceptionHandler
public static function SetExceptionHandler(ExceptionHandler $handler)
{
self::$handler = $handler;
}
示例6: setExceptionHandler
/**
* Set exception handler.
*
* @return void
*/
public final function setExceptionHandler()
{
set_exception_handler(ExceptionHandler::handler());
}