Home › Forums › CodeIgniter › Benchmarking
Tagged: benchmarking
This is useful:
$this->benchmark->mark('code_start'); // Some code happens here $this->benchmark->mark('code_end'); echo $this->benchmark->elapsed_time('code_start', 'code_end');
Documentation here: https://www.codeigniter.com/userguide3/libraries/benchmark.html#using-the-benchmark-class
You must be logged in to reply to this topic.