php – Guzzle 6 – 获取请求总时间

前端之家收集整理的这篇文章主要介绍了php – Guzzle 6 – 获取请求总时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找在Guzzle 6中检索请求总时间,就在一个简单的GET请求之后:
$client = new GuzzleHttp\Client();
$response = client->get('http://www.google.com/');

但是在文档中找不到任何关于那个的东西.任何的想法 ?

非常感谢.

在Guzzle 6.1.0中您可以使用’on_stats’请求选项来获取传输时间等.

更多信息可在Request Options – on_stats找到

https://github.com/guzzle/guzzle/releases/tag/6.1.0

原文链接:https://www.f2er.com/php/445222.html

猜你在找的PHP相关文章