隐藏notice与warning报错

ini_set("display_errors", 0);

// 关闭错误报告
 error_reporting(0);

 // 报告 runtime 错误
 error_reporting(E_ERROR | E_WARNING | E_PARSE);

 // 报告所有错误
 error_reporting(E_ALL);

 // 等同 error_reporting(E_ALL);
 ini_set("error_reporting", E_ALL);

 // 报告 E_NOTICE 之外的所有错误
 error_reporting(E_ALL & ~E_NOTICE);

 

posted @ 2018-09-26 17:36  zrn  阅读(272)  评论(0编辑  收藏  举报