No. The multifunctional libcurl interface (which PHP uses for this work) executes several requests in parallel, but does so using non-blocking API calls. Not topics.
In past
(This section can now be considered historical, since libcurl is built by default using a multi-threaded resolver).
A problem that people may encounter is when a particular transfer must resolve the host name, since the standard host name recognition functions on most operating systems are synchronous, which causes each transformation to block all other transfers. This is overcome in libcurl by providing alternative resolver handlers, such as one created to use c-ares for resolution, and another that runs the "source resolver" in a separate thread - the so-called thread recognizer.
source share