Extra Light PHP Framework
Benchmark
This class can be used to calculate the time difference between any two marked points.
Content
Load the library
$this->load_library('benchmark');
How to track time
$this->benchmark->begin('alpha');
sleep(2);
$this->benchmark->end('alpha');
echo $this->benchmark->get_time_for('alpha');
// or
$this->benchmark->log_time_for('alpha');