试图分析CodeIgniter应用程序,但无法获取报告

时间:2017-11-16 13:34:02

标签: php apache codeigniter

我已根据官方文档尝试将$this->output->enable_profiler(true);包含在我的控制器中。我在构造函数中添加了parent::__construct();下的代码行,但是网页没有加载。

已更新

这是我的构造函数:

parent::__construct();
        $this->output->enable_profiler(true);
        $sections = array(
            'config' => FALSE,
            'queries' => TRUE,
            'post' => FALSE,
            'memory_usage' => TRUE,
            'get' => FALSE,
            'benchmarks' => TRUE,
            'controller_info' => FALSE,
            'url_string' => FALSE,
        );
        $this->output->set_profiler_sections($sections);

1 个答案:

答案 0 :(得分:0)

它可能只是一个复制/粘贴错误,但你有

$this-output-set_profiler_sections($sections);

当你应该:

$this->output->set_profiler_sections($sections);