Archive for the ‘profiler’ tag
Profiling your CodeIgniter applications
The CI Output Class has enable_profiler() to set enable the profiler in CodeIgniter.
By using this operation, you can enable or disable the profiler in the output.
$this->output->enable_profiler(TRUE);
The profiler is very useful for debugging purposes, you can see a footer with information all the time while running your application in development phase.



