views:

59

answers:

2

How can I make multi-thread (parallel) GET requests in PHP? I know that there is a CURL multi-thread support, but there is no limit of active requests number and actual callbacks configuration for every success request completion.

A: 

You have example of performing concurrent request in curl_multi_init() function documentation.

vartec
+4  A: 

There is CURL based library MultiRequest for your case.

StanlyQ