I know it's most likely a very dumb question to ask, and I've been using curl_multi and classes such as https://github.com/petewarden/ParallelCurl/ for multithreading.
But recently I came across this building a web proxy, an open-source PHP web proxy framework called glype.
it seems to me all resources are fetched by cURL, and there's no curl_multi in its source code whatsoever, the code contains only curl_init and curl_exec.
That said, img's (and probably other src too) load concurrently, I briefly went through the code, but failed to find a clue how it works this way.
Anyone have tried multithreading cURL without using curl_multi? (PHP pthread not included)