start(); // <- Places a value for Start of Timer
sleep(5); // <- Pause
$timer->end(); // <- Places a value for End of Timer
// -- Output the Results
echo $timer->startTimer . '
';
echo $timer->endTimer . '
';
echo $timer->time() . '
';
echo $timer->format_time() . '
';
echo $timer->avg_time(5) . '
';
echo $timer->format_avg_time(5);
// ===================================================
$timer = null;