如何在codeigniter中创建自定义error_php文件?

时间:2017-05-30 06:35:22

标签: php codeigniter error-handling

搜索自定义“A PHP Error”消息样式的解决方案,对于404我们可以覆盖但是php错误和db错误怎么样。虽然样式化error_db已经有效,但却无法在error_php

中使用views/error

1 个答案:

答案 0 :(得分:1)

显示这些信息是因为您的环境处于开发模式。

对于制作,请在define('ENVIRONMENT', 'production'); 中设置以下内容:

config.php

因此,您向用户提供最少的信息,而不向黑客提供关键信息。

记录这些错误非常重要,因此请设置$config['log_threshold'] = 4; // or less information by decreasing the number.

db_debug

还有更多调试选项。例如@{ Layout = null; } 。有关详细信息,请参阅https://codeigniter.com/user_guide/database/configuration.html