Guzzle on_redirect无法正常工作

时间:2016-06-19 20:47:05

标签: php guzzle

我正在使用Guzzle 我在on_redirect上遇到了麻烦。

我在这里有基本样本:

$client = new Client([ 
'handler' => $stack, 
'allow_redirects' => [ 
            'on_redirect' => function () {echo '123';},         
             'track_redirects' => true, ], 
]);

它没有用。

包含重定向中间件。

有人可以解释一下我做错了什么吗?

0 个答案:

没有答案