我在一个类中有这个代码:
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客户端的情况下调用网站它有效,任何人都知道为什么不工作?感谢