1

Because of connection speed limit for each request, i can't download large file from my remote server(getting timeout), but when testing with multi connection at same time(test with download managers software) download speed incredibly and get completed.
I tested cUrl and fopen but none of this has multi chunk download at same time.

Tips: I don't need download multi file at same time, something like https://github.com/petewarden/ParallelCurl

1 Answers1

0

cUrl has an option called range that makes partial download of a file possible. You can refer to this for more information about range and see a sample PHP cUrl request here

For running a multi_curl refer to this

Farzad Rastgar Sani
  • 371
  • 1
  • 4
  • 12