创建在网页上显示Codeigniter日志文件的页面

时间:2015-11-15 23:19:45

标签: php codeigniter error-handling

我有一个管理页面,我希望在我的Codeigniter的应用程序/日志文件夹中创建的所有日志消息都显示在页面上。这样我就不必进入实际文件来查看它们,可以通过登录我的站点并单击Logs页面来查看它们。

这可能吗?

1 个答案:

答案 0 :(得分:2)

这是我的error_log的方式,也显示在视图

@Tpojka建议op

file_get_contents($file, FILE_USE_INCLUDE_PATH, null);

错误日志视图

<?php

class Error_log extends CI_Controller {


    public function index() {   
        $data['title'] = 'Error Log';

        $data['clear'] = site_url('tool/error_log/clear');

        $data['log'] = '';

         // Current Filename;
        $file = FCPATH . 'application/logs/' . 'log-'.date('Y-m-d').'.php';

        if (file_exists($file)) {
            $size = filesize($file);

            if ($size >= 5242880) {
                $suffix = array(
                    'B',
                    'KB',
                    'MB',
                    'GB',
                    'TB',
                    'PB',
                    'EB',
                    'ZB',
                    'YB'
                );

                $i = 0;

                while (($size / 1024) > 1) {
                    $size = $size / 1024;
                    $i++;
                }

                $error_warning = 'Warning: Your error log file %s is %s!';

                $data['error_warning'] = sprintf($error_warning, basename($file), round(substr($size, 0, strpos($size, '.') + 4), 2) . $suffix[$i]);
            } else {

                 // Updated from comment

                $log = file_get_contents($file, FILE_USE_INCLUDE_PATH, null); 
                $lines = explode("\n", $log); 
                $content = implode("\n", array_slice($lines, 1)); 
                $data['log'] = $content;
            }
        }

        $this->load->view('header', $data)
        $this->load->view('error_log', $data);
        $this->load->view('footer');
    }

}

我在config.php上有默认的日志路径,但你可以将它设置为你需要的。

<div id="content">
    <div class="container-fluid">
        <div class="panel panel-default">
        <div class="panel-heading">
            <h3 class="panel-title"><i class="fa fa-exclamation-triangle"></i></h3>
        </div>
        <div class="panel-body">
            <textarea wrap="off" rows="15" readonly class="form-control"><?php echo $log; ?></textarea>
        </div>
        </div>
    </div>
</div>

样本预览

enter image description here