我需要发送多个请求,所以我想实现一个批处理请求。
我们如何在 Guzzle6 中做到这一点?
使用旧方法:
$client->send(array(
$client->get($courses), //api url
$client->get($job_categories), //api url
));
给了我错误:
GuzzleHttp\Client::send() must implement interface Psr\Http\Message\RequestInterface, array given