概述 快速入门 教程 手册 最佳实践 组件 参考 贡献

发布于 2015-08-27 16:30:12 | 298 次阅读 | 评论: 0 | 来源: 网络整理

The Stopwatch component provides a way to profile code.

Installation

You can install the component in two different ways:

Usage

The Stopwatch component provides an easy and consistent way to measure execution time of certain parts of code so that you don’t constantly have to parse microtime by yourself. Instead, use the simple Stopwatch class:

use SymfonyComponentStopwatchStopwatch;

$stopwatch = new Stopwatch();
// Start event named 'eventName'
$stopwatch->start('eventName');
// ... some code goes here
$event = $stopwatch->stop('eventName');

The StopwatchEvent object can be retrieved from the start(), stop(), lap() and getEvent() methods. The latter should be used when you need to retrieve the duration of an event while it is still running.

You can also provide a category name to an event:

$stopwatch->start('eventName', 'categoryName');

You can consider categories as a way of tagging events. For example, the Symfony Profiler tool uses categories to nicely color-code different events.

Periods

As you know from the real world, all stopwatches come with two buttons: one to start and stop the stopwatch, and another to measure the lap time. This is exactly what the lap() method does:

$stopwatch = new Stopwatch();
// Start event named 'foo'
$stopwatch->start('foo');
// ... some code goes here
$stopwatch->lap('foo');
// ... some code goes here
$stopwatch->lap('foo');
// ... some other code goes here
$event = $stopwatch->stop('foo');

Lap information is stored as “periods” within the event. To get lap information call:

$event->getPeriods();

In addition to periods, you can get other useful information from the event object. For example:

$event->getCategory();   // Returns the category the event was started in
$event->getOrigin();     // Returns the event start time in milliseconds
$event->ensureStopped(); // Stops all periods not already stopped
$event->getStartTime();  // Returns the start time of the very first period
$event->getEndTime();    // Returns the end time of the very last period
$event->getDuration();   // Returns the event duration, including all periods
$event->getMemory();     // Returns the max memory usage of all periods

Sections

Sections are a way to logically split the timeline into groups. You can see how Symfony uses sections to nicely visualize the framework lifecycle in the Symfony Profiler tool. Here is a basic usage example using sections:

$stopwatch = new Stopwatch();

$stopwatch->openSection();
$stopwatch->start('parsing_config_file', 'filesystem_operations');
$stopwatch->stopSection('routing');

$events = $stopwatch->getSectionEvents('routing');

You can reopen a closed section by calling the openSection() method and specifying the id of the section to be reopened:

$stopwatch->openSection('routing');
$stopwatch->start('building_config_tree');
$stopwatch->stopSection('routing');
最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务