dev-master
9999999-devA simple code execution timing class
MIT
The Requires
- php >=5.4.0
by Dan Klassen
timer performance timing
1.0.0
1.0.0.0A simple code execution timing class
MIT
The Requires
- php >=5.4.0
by Dan Klassen
timer performance timing
Wallogit.com
2017 © Pedro Peláez
A simple code execution timing class
a simple timer class for php code performance testing, (*1)
use TripleI\Timer\Timer;
// start the timer
Timer::start();
/* some expensive code here */
// let's see how long it took to execute
Timer::tick('did some fancy stuff');
/* more expensive code here */
// let's see how long it was since the timer initially started
Timer::tick('did more fancy stuff');
// more code to time here. This time we will output a relative timestamp since the last ::tick() as well
Timer::tick('relative timer', true);
// output the end timing
Timer::done();
sample output, (*2)
0.27108597755432 - did some fancy stuff 0.47066617012024 - did more fancy stuff 0.84685397148132 - (0.37618780136108) relative timer 0.84687614440918 - Done
A simple code execution timing class
MIT
timer performance timing
A simple code execution timing class
MIT
timer performance timing