时间:2021-07-01 10:21:17 帮助过:41人阅读
/**
* 获取最后一次出错信息,无论如何也能获取到
*
* error_get_last set_error_handler 都不会受环境配置的影响
*
*/
error_reporting(0);
ini_set("display_errors", "off");
set_error_handler(function(){
print_r(func_get_args());
});
echo $a ;
print_r(error_get_last());