Answers:
CodeIgniter内置了一些错误记录功能。
要简单地在服务器的错误日志中添加一行,请使用PHP的error_log()函数。但是,该方法将不会发送电子邮件。
首先,触发错误:
trigger_error("Error message here", E_USER_ERROR);
默认情况下,这将放入服务器的错误日志文件中。请参阅Apache 的ErrorLog指令。设置自己的日志文件:
ini_set('error_log', 'path/to/log/file');
请注意,您选择的日志文件必须已经存在并且可以被服务器进程写入。使文件可写的最简单方法是使服务器用户成为文件的所有者。(服务器用户可以是nobody,_www,apache或其他用户,具体取决于您的操作系统分发。)
要通过电子邮件发送错误,您需要设置一个自定义错误处理程序:
function mail_error($errno, $errstr, $errfile, $errline) {
$message = "[Error $errno] $errstr - Error on line $errline in file $errfile";
error_log($message); // writes the error to the log file
mail('you@yourdomain.com', 'I have an error', $message);
}
set_error_handler('mail_error', E_ALL^E_NOTICE);
请参阅相关的PHP文档以获取更多信息。
关于第4部分的更多问题,您如何通过电子邮件将该错误发送到电子邮件地址?error_log函数也具有电子邮件目标。 http://php.net/manual/zh/function.error-log.php
Agha,在这里我找到了一个显示用法的示例。 使用error_log()通过电子邮件发送错误消息
error_log($this->_errorMsg, 1, ADMIN_MAIL, "Content-Type: text/html; charset=utf8\r\nFrom: ".MAIL_ERR_FROM."\r\nTo: ".ADMIN_MAIL);
In config.php add or edit the following lines to this:
------------------------------------------------------
$config['log_threshold'] = 4; // (1/2/3)
$config['log_path'] = '/home/path/to/application/logs/';
Run this command in the terminal:
----------------------------------
sudo chmod -R 777 /home/path/to/application/logs/