I'm searching to retrieve the request total time in Guzzle 6, just after a simple GET request :
$client = new GuzzleHttp\Client();
$response = client->get('http://www.google.com/');
But can't find anything in the docs about that. Any idea ?
Thanks a lot.
$time['start']['google'] = microtime();
store the end at$time['end']['google']
and iterate the whenever you want to. – Primate