';
$table .= 'Breakpoint | Time | Duration |
';
foreach($timer as $breakpoint => $time)
{
$duration = $time - $lastTime;
$table .= '';
$table .= '' . $breakpoint . ' | ';
$table .= '' . $time . ' | ';
$table .= '' . $duration . ' | ';
$table .= '
';
$lastTime = $time;
}
$table .= '