php register_shutdown_function响应error 配合error_get_last 捕获错误
2021-06-27 21:04
标签:存在 nbsp pre callback tmp erro back function port 转自: http://blog.csdn.net/a757291228/article/details/62231125 php register_shutdown_function响应error 配合error_get_last 捕获错误 标签:存在 nbsp pre callback tmp erro back function port 原文地址:http://www.cnblogs.com/dongruiha/p/7145881.html//一个函数,用来响应 register_shutdown_function
function shutdownCallback($logPath=‘/tmp/z.log‘){
$arrError = error_get_last(); //使用 error_get_last 能捕获错误,等下说明
$date = date(‘Y-m-d H:i:s‘, time());
file_put_contents($logPath, "[".$date."]".var_export($arrError, true)."\r\n", FILE_APPEND);
}
register_shutdown_function("shutdownCallback");//如果出现错误则执行 shutdownCallback 触发器一样的存在
$b = new aa(); // 错误的代码
文章标题:php register_shutdown_function响应error 配合error_get_last 捕获错误
文章链接:http://soscw.com/index.php/essay/98586.html