码迷,mamicode.com
首页 > 其他好文 > 详细

error_reporting

时间:2015-06-01 13:10:02      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

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

 // Report simple running errors
 error_reporting ( E_ERROR  |  E_WARNING  |  E_PARSE );

 // 报告 E_NOTICE也挺好 (报告未初始化的变量
// 或者捕获变量名的错误拼写)
 error_reporting ( E_ERROR  |  E_WARNING  |  E_PARSE  |  E_NOTICE );

 // 除了 E_NOTICE,报告其他所有错误
// 这是在 php.ini 里的默认设置
 error_reporting ( E_ALL  ^  E_NOTICE );

 // 报告所有 PHP 错误 (参见 changelog)
 error_reporting ( E_ALL );

 // 报告所有 PHP 错误
 error_reporting (- 1 );

 // 和 error_reporting(E_ALL); 一样
 ini_set ( ‘error_reporting‘ ,  E_ALL );

记录错误日志的路径

error_reporting(E_ALL);
ini_set(‘display_errors‘,‘On‘);

ini_set(‘error_log‘,‘/dev/null‘); #linux

 

error_reporting

标签:

原文地址:http://www.cnblogs.com/gide/p/4543509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!