我想在PHP CodeIgniter中记录错误。如何启用错误记录?
我有一些疑问:
CodeIgniter内置了一些错误记录功能。
在 /application/config/config.php中 设置 $config['log_threshold'] = 1; 或使用更大的数字,具体取决于您希望在日志中获取多少详细信息
$config['log_threshold'] = 1;
采用 log_message('error', 'Some variable did not contain a value.');
log_message('error', 'Some variable did not contain a value.');
log_exceptions()
参见http://www.codeigniter.com/user_guide/general/errors.html