我正在尝试使用 Guzzle (v 6) 分析从 PHP 客户端向 API 服务器发出的请求。
在 Guzzle 5.3 中有这个complete
和before
事件处理。
class GuzzleProfiler implements SubscriberInterface
{
public function getEvents()
{
return [
'before' => ['onBefore'],
'complete' => ['onComplete']
];
}
public function onBefore(BeforeEvent $event, $name)
{
start_profiling();
}
public function onComplete(CompleteEvent $event, $name)
{
end_profiling();
}
}
但是我如何在 v6 中做到这一点?