Goutte / GuzzleHTTP 获取响应主体的 Content-Length / Size
Goutte / GuzzleHTTP Get the Content-Length / Size of the response body
我正在使用 https://github.com/FriendsOfPHP/Goutte 抓取页面。没有问题。
我正在尝试从客户端响应对象中获取 Content-Length
,但看不出我该怎么做。
单击文档...使用 $response = $client->getInternalResponse()
获取 Symfony\Component\BrowserKit\Response
,作为 $response->getHeader('Content-Length')
可用。 :-)
我正在使用 https://github.com/FriendsOfPHP/Goutte 抓取页面。没有问题。
我正在尝试从客户端响应对象中获取 Content-Length
,但看不出我该怎么做。
单击文档...使用 $response = $client->getInternalResponse()
获取 Symfony\Component\BrowserKit\Response
,作为 $response->getHeader('Content-Length')
可用。 :-)