无法在guzzle客户端和goutte

时间:2018-03-21 14:50:31

标签: php symfony guzzle goutte

我在一个类中有这个代码:

use Goutte\Client;
use GuzzleHttp\Client as GuzzleClient;
[...]

  $this->client = new Client();
    $this->guzzleClient = new GuzzleClient(array(
        'verify' => false,
    ));
    $this->client->setClient($this->guzzleClient);

然后我称之为在这样的网站上发出请求:

  $crawler = $this->client->request('GET', $url);

就像当我把guzzle放在goutte里面时它忽略了guzzle属性,因为如果我在没有goutte客户端的情况下调用网站它有效,任何人都知道为什么不工作?感谢

0 个答案:

没有答案