Detailed explanation of the use of php register_shutdown_function function

怪我咯
Release: 2023-03-12 14:12:01
Original
1504 people have browsed it

This article mainly introduces PHPError handlingUsage example of function register_shutdown_function, friends who need it can refer to it

When the program is running online, if you encounter a BUG, ​​don't think about it on the front end Output error message, and at the same time notify developers by email in a timely manner, the register_shutdown_function function can come in handy.

Register a function that will be called after the script execution is completed or after exit().

Can be called multiple times register_shutdown_function() , these registered callbacks will be called sequentially in the order in which they were registered. If you call exit() inside a registered method, all processing will be aborted and other registered abort callbacks will not be called again.

register_shutdown_function Function, when our script execution is completed or unexpectedly dies, causing PHP execution to be shut down, our function will be called and can be used in conjunction with error_get_last Use to get error information.

register_shutdown_function ( callable $callback [, mixed $parameter [, mixed $... ]] )
Copy after login

callable callback function

parameter Parameters can be passed to the abort function by passing in additional parameters

DEMO1:

//关闭错误报告
error_reporting(0);
//实现自己的错误信息展示
register_shutdown_function(‘myShutdown‘);
$debug = true;
function myShutdown() {
  global $debug;
  // 无论错误是否发生,这句都会执行
  echo ‘ERROR‘ , ‘<br/>‘;
  if (!$debug) {
    $error = error_get_last();
    // todo 可以在这里做邮件发送提醒 或 错误日志收集
    var_export($error);
  }
}
Copy after login

DEMO2

// 回到函数带参数:记录当前请求URL
$current_page = htmlspecialchars($_SERVER[‘SCRIPT_NAME‘], ENT_QUOTES, ‘UTF-8‘);
$current_page .= $_SERVER[‘QUERY_STRING‘] ? ‘?‘.htmlspecialchars($_SERVER[‘QUERY_STRING‘], ENT_QUOTES, ‘UTF-8‘) : ‘‘;
register_shutdown_function(function ($current_page) {
  //todo send email or log
}, $current_page);
error_get_last() 
//错误信息查看:http://php.net/manual/zh/errorfunc.constants.php
Copy after login

The above is the detailed content of Detailed explanation of the use of php register_shutdown_function function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!