Dmitriy Gnatenko e5f3fbd37b Vendors updated | hace 3 años | |
---|---|---|
.. | ||
CHANGELOG.md | hace 4 años | |
LICENSE | hace 3 años | |
README.md | hace 3 años | |
Section.php | hace 3 años | |
Stopwatch.php | hace 4 años | |
StopwatchEvent.php | hace 3 años | |
StopwatchPeriod.php | hace 3 años | |
composer.json | hace 3 años |
The Stopwatch component provides a way to profile code.
$ 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');