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
2010-10-08 13:08:13