FestinHegre/vendor/symfony/stopwatch
2024-09-26 17:26:04 +02:00
..
CHANGELOG.md Vendor 2024-09-26 17:26:04 +02:00
composer.json Vendor 2024-09-26 17:26:04 +02:00
LICENSE Vendor 2024-09-26 17:26:04 +02:00
README.md Vendor 2024-09-26 17:26:04 +02:00
Section.php Vendor 2024-09-26 17:26:04 +02:00
Stopwatch.php Vendor 2024-09-26 17:26:04 +02:00
StopwatchEvent.php Vendor 2024-09-26 17:26:04 +02:00
StopwatchPeriod.php Vendor 2024-09-26 17:26:04 +02:00

Stopwatch Component

The Stopwatch component provides a way to profile code.

Getting Started

composer require symfony/stopwatch
use Symfony\Component\Stopwatch\Stopwatch;

$stopwatch = new Stopwatch();

// optionally group events into sections (e.g. phases of the execution)
$stopwatch->openSection();

// starts event named 'eventName'
$stopwatch->start('eventName');

// ... run your code here

// optionally, start a new "lap" time
$stopwatch->lap('foo');

// ... run your code here

$event = $stopwatch->stop('eventName');

$stopwatch->stopSection('phase_1');

Resources