Guzzle 6 を使用して、次のコードで Pool/Promise Asynchronous をテストしました。
$client = new \GuzzleHttp\Client();
$urls = [];
for($i = 1; $i<10; $i++) {
$urls[] = ''https://httpbin.org/get?id='.$i;
}
$requests = function ($urls){
if(!empty($urls)) {
foreach($urls as $uri){
yield new \GuzzleHttp\Psr7\Request('GET', $uri);
}
}
};
$values = [];
$pool = new \GuzzleHttp\Pool($client, $requests($urls), [
'concurrency' => 5,
'fulfilled' => function ($response, $index) use (&$values){
// this is delivered each successful response
return $values[]=$response->getStatusCode();
},
'rejected' => function ($reason, $index){
// this is delivered each failed request
//dd($reason);
return $reason->getResponse();
},
]);
// Initiate the transfers and create a promise
$promise = $pool->promise();
// Force the pool of requests to complete.
$promise->wait();
var_dump($values);
$値を参照渡しせず、$promise->wait();
代わりに結果を受け取る方法またはリファクタリングはありますか?
に見られるように: http://guzzle.readthedocs.io/en/latest/quickstart.html#async-requests
拒否された Promise をすべて無視したい場合は、Promise\Settle を実行する方法があり、待機によって結果配列内に返された値が返されます。