在开发和生产应用程序上设置错误报告时的最佳实践是什么?目前,我有以下内容:
// development
error_reporting(E_ALL);
// production
ini_set('display_errors', 0);
ini_set('log_errors', 1);
error_reporting(E_ERROR | E_WARNING | E_PARSE);
在开发和生产应用程序上设置错误报告时的最佳实践是什么?目前,我有以下内容://开发error_reporting(E_ALL); //生产ini_set('...
引用与PHP捆绑在一起的php-production.ini:
为了获得最佳的错误记录体验,请将error_reporting
设置为-1
(绝对是所有内容),将display_errors
设置为[[off]],然后设置自定义error_log
。