网站建设技术团队
PHP的error_reporting()函数介绍
  • 日期 : 2012-04-10
//禁用错误报告
error_reporting(0);

//报告运行时错误
error_reporting(E_ERROR | E_WARNING | E_PARSE);

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