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