edbizarro/timer

Measure execution time of your code

v0.1.1 2018-06-20 15:04 UTC

README

stopwatch.png

Timer - measure execution time of your code

Here are a few examples on how you can use the package:

use Edbizarro\Timer\Timer;

$timer = Timer::start('timer01');
sleep(2);
$result = $timer->stop();

print_r($result);

// array:7 [                                                                                                                                                                                                
//   "start" => 1529506852.084                                                                                                                                                                              
//   "end" => 1529506854.0855                                                                                                                                                                               
//   "duration" => 2.0015239715576                                                                                                                                                                          
//   "milliseconds" => 2001.5239715576                                                                                                                                                                      
//   "seconds" => 2                                                                                                                                                                                         
//   "minutes" => 0                                                                                                                                                                                         
//   "hours" => 0                                                                                                                                                                                           
// ]    

Installation

You can install the package via composer:

composer require edbizarro/timer

forthebadge