1

有时很难诊断中型/大型 codeIgniter 应用程序中出现的问题。当我们不知道用户如何访问资源时,很难重现。这是一个非常方便的脚本。

4

1 回答 1

1

“kirill”在“key2market.com”上发布的博客中提供的脚本

它将错误、URI 和发布的数据记录到您的日志文件中。如果您的应用程序有很多错误,该脚本可能会减慢您的服务器。

  • 只需创建文件“[CI]application/core/MY_Exceptions.php”
  • 复制/粘贴以下脚本:

开始

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class MY_Exceptions extends CI_Exceptions{

    /**
    * Constructor
    *
    */
    function __construct(){
        parent::__construct();
    }

    /**
    * Exception Logger
    *
    * This function logs PHP generated error messages
    *
    */
    function log_exception($severity, $message, $filepath, $line)
    {
        $severity = ( ! isset($this->levels[$severity])) ? $severity : $this->levels[$severity];
        $message = 'Severity: '.$severity.' –&gt; '.$message. ' '.$filepath.' '.$line.' [URI='.$_SERVER['REQUEST_URI'].']';

        if( !empty($_POST) ){
            $message .= 'POST: ';
            foreach($_POST as $key=>$value){
                $message .= $key.' => '.$value;
            }
        }
        log_message('error', $message, TRUE);
    }

}
// END Exceptions Class

/* End of file Exceptions.php */
/* Location: ./ci_app/core/Exceptions.php */

结尾

于 2013-01-18T16:07:05.343 回答