是否可以將自定義數據輸出到CI分析器?CodeIgniter輸出到分析器
我試圖
$this->output->append_output($var);
但這似乎是相似的迴音,因爲它出現在頁面的頂部。
有沒有辦法讓這個與其餘的分析信息一起出現?
是否可以將自定義數據輸出到CI分析器?CodeIgniter輸出到分析器
我試圖
$this->output->append_output($var);
但這似乎是相似的迴音,因爲它出現在頁面的頂部。
有沒有辦法讓這個與其餘的分析信息一起出現?
擴展剖析類:
class MY_Profiler extends CI_Profiler {
function _do_stuff() {
//do stuff
}
//In the run method add your method
function run() {
$this->_do_stuff();
}
}
這是從我的博客的東西:http://pinoytech.org/blog/post/Add-SESSIONS-to-Profiler-in-CodeIgniter
有兩種方式可以設置要顯示
1.增加這哪些板塊控制器方法,你想簡介:
$sections = array(
'config' => TRUE,
'queries' => TRUE
);
$this->output->set_profiler_sections($sections);
$this->output->enable_profiler(TRUE);
2.In的application/config/profiler.php組應用範圍的默認值:
$config['config'] = FALSE;
$config['queries'] = FALSE;
這裏是所有可用部分列表:(這個可以根據系統/庫/ profiler.php找到的方式
'benchmarks',
'get',
'memory_usage',
'post',
'uri_string',
'controller_info',
'queries',
'http_headers',
'session_data',
'config'