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


PHP ErrorHandler::handleShutdown方法代码示例

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


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

示例1: initErrorHandlers

 /**
  * This method will be executed to set up the error handlers
  *
  * @static
  * @access public
  * @return void
  */
 private static function initErrorHandlers()
 {
     set_exception_handler(function ($e) {
         require_once 'ErrorHandler.php';
         ErrorHandler::handleException($e);
     });
     set_error_handler(function ($code, $error, $file, $line) {
         require_once 'ErrorHandler.php';
         ErrorHandler::handleNormalError($code, $error, $file, $line);
     });
     register_shutdown_function(function () {
         require_once 'ErrorHandler.php';
         ErrorHandler::handleShutdown();
     });
 }
开发者ID:xdbas,项目名称:restwork,代码行数:22,代码来源:Application.php

示例2: ErrorHandler

<?php

namespace DYuriev;

/*
* @author: Dmitriy Yuriev <coolkid00@gmail.com>
* @product: error_handler
* @version: 1.1.1
* @release date: 27.07.2014
* @development started: 15.07.2014
* @license: GNU AGPLv3 <http://www.gnu.org/licenses/agpl.txt>
*
* A small useful library that helps to handle PHP fatal errors and exceptions.
* Supports messages on two languages: russian and english.
*/
error_reporting(-1);
ini_set("display_errors", "Off");
ini_set("display_startup_errors", "Off");
ini_set("html_errors", "Off");
define('ERROR_HANDLER_DIR', __DIR__);
require_once ERROR_HANDLER_DIR . '/class/ErrorHandler.class.php';
$error_handler = new ErrorHandler(\Swift_Mailer::newInstance(\Swift_MailTransport::newInstance()), \Swift_Message::newInstance());
set_error_handler(function ($err_no, $err_str, $err_file, $err_line) use($error_handler) {
    $error_handler->handleError($err_no, $err_str, $err_file, $err_line);
}, E_ALL | E_STRICT);
set_exception_handler(function ($exception) use($error_handler) {
    $error_handler->handleException($exception);
});
register_shutdown_function(function () use($error_handler) {
    $error_handler->handleShutdown();
});
开发者ID:dyuriev,项目名称:error_handler,代码行数:31,代码来源:error_handler_require.php


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