I'm using PHP's CURL MULTI to download an array of resources in parallel, and I want to get the last effective URL from each of the resources (not just the last one).
Basically, I'm looking for:
curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
for CURL MULTI, something like:
curl_multi_getinfo($ch[$key], CURLINFO_EFFECTIVE_URL);
Any ideas?