如何在Guzzle中设置默认标题?
$baseUrl = 'http://foo';
$config = array();
$client = new Guzzle\Http\Client($baseUrl, $config);
设置 Guzzle 的默认标头而不将其作为参数传递给每个标头的新方法是什么?$client->post($uri, $headers)
有,但它已被弃用。$client->setDefaultHeaders($headers)
setDefaultHeaders is deprecated. Use the request.options array to specify default request options