php register_shutdown_function响应error 配合error_get_last 捕获错误

2021-06-27 21:04

阅读:411

标签:存在   nbsp   pre   callback   tmp   erro   back   function   port   

转自:

http://blog.csdn.net/a757291228/article/details/62231125

 

//一个函数,用来响应 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 捕获错误

标签:存在   nbsp   pre   callback   tmp   erro   back   function   port   

原文地址:http://www.cnblogs.com/dongruiha/p/7145881.html


评论


亲,登录后才可以留言!