Guzzle Exceptions和“http_errors请求选项”

时间:2015-07-04 00:16:37

标签: curl guzzle

在guzzle6手册(http://guzzle.readthedocs.org/en/latest/quickstart.html#exceptions)中声明

  

如果http_errors请求选项设置为true,则抛出GuzzleHttp \ Exception \ ClientException 400级错误

这个“http_errors”设置是什么,你如何改变它?

我试过了:

$client = new \Guzzle\Http\Client();
$client->setDefaultOption('http_errors', false);

我不确定这是否有任何影响。除此之外,我无法在库源代码中的任何地方找到字符串“http_errors”,这让我怀疑我误解了文档。

那么如何更改此“http_errors”设置/请求选项?

2 个答案:

答案 0 :(得分:1)

对于Guzzle 6

 $client->get('/status/500', ['http_errors' => false]);

https://guzzle.readthedocs.io/en/latest/request-options.html#http-errors

此答案由@Alcalyn在上面的评论中提供。

答案 1 :(得分:-1)

You need to use "exception" option.

More information here : http://guzzle.readthedocs.org/en/5.3/clients.html#exceptions