curl-multi

PHP Multiple Curl Requests

Hi, I'm currently using Curl for PHP a lot. It takes a lot of time to get results of about 100 pages each time. For every request i'm using code like this $ch = curl_init(); // get source ch_close($ch); What are my options to speed things up? How should I use the multi_init etc>? ...

PHP multi curl - find out what proxy was used for a particular curl handle

I'm using multi curl with anonymous proxies, and I want to flag the proxies based on performance and location etc after the curl handle is returned. I've tried curl_getinfo() but that does not return information about the proxy used for that curl handle. Any ideas? I've thought about maybe a way to identify a particular handle and stor...