caisse-bliss/vendor/symfony/stopwatch
2023-06-19 12:13:30 +02:00
..
CHANGELOG.md add version symfony flex 6 2023-06-19 12:13:30 +02:00
composer.json add version symfony flex 6 2023-06-19 12:13:30 +02:00
LICENSE add version symfony flex 6 2023-06-19 12:13:30 +02:00
README.md add version symfony flex 6 2023-06-19 12:13:30 +02:00
Section.php add version symfony flex 6 2023-06-19 12:13:30 +02:00
Stopwatch.php add version symfony flex 6 2023-06-19 12:13:30 +02:00
StopwatchEvent.php add version symfony flex 6 2023-06-19 12:13:30 +02:00
StopwatchPeriod.php add version symfony flex 6 2023-06-19 12:13:30 +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