在我的自定义控制器功能中,我获得有关请求的信息,如下所示:
public function customProfilerControllerFunction {
$profiler = $this->container->get('profiler');
$requests = $profiler->find('', '', 10000, '', $start, $end);
...
}
我的目标是获得每个查询的总执行次数。如何在自定义探查器控制器功能中访问每个请求的总执行时间?