Codeigniter的调试工具

时间:2017-09-04 09:16:24

标签: php codeigniter debugging codeigniter-3 codeigniter-restserver

我想使用Codeigniter开发API调用。要查看最近发出的GET/POST/DELETE个请求,我希望有一个Debugging Tool,例如Yii2 - Debugger

PF Below for Yii-Debugger enter image description here

  

请帮助我使用显示10-50的任何Codeigniter Debugger工具   最近的请求,也包含DB requests

我知道保存当前页面数据的DebugBar

1 个答案:

答案 0 :(得分:1)

我想只启用探查器应该有帮助(单个请求)。

在控制器中:

$this->output->enable_profiler(TRUE);

有关Profiler配置的更多信息:https://www.codeigniter.com/userguide3/general/profiling.html#enabling-and-disabling-profiler-sections

<强>更新

要记录所有/多个请求并拥有信息中心,此lib应该可以提供帮助:https://github.com/lonnieezell/codeigniter-forensics。我对它没有任何个人经验,但听起来就像是诀窍。它还有一个调试栏。