Symfony 2 Profiler:获取总执行时间

时间:2018-03-05 13:45:03

标签: php symfony profiler symfony-2.3

在我的自定义控制器功能中,我获得有关请求的信息,如下所示:

public function customProfilerControllerFunction {
    $profiler = $this->container->get('profiler');
    $requests = $profiler->find('', '', 10000, '', $start, $end);
    ...
}

我的目标是获得每个查询的总执行次数。如何在自定义探查器控制器功能中访问每个请求的总执行时间?

0 个答案:

没有答案