Home  >  Article  >  Backend Development  >  PHP获取最后一次出错信息,不会受环境配置的影响

PHP获取最后一次出错信息,不会受环境配置的影响

WBOY
WBOYOriginal
2016-06-20 13:05:05871browse

/**
 * 获取最后一次出错信息,无论如何也能获取到
 * 
 * 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());

 


Statement:
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