Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I’m using Curl for PHP for a while but now I’m facing a case that I don’t know how to solve.

I need to do more than 400 request from the same page. In other cases I have used curl_multi and it works perfect, the problem with this case is I need to use the same handler for all requests for having the expected result. As far as I understood and the way I used it is adding an independent Curl handle with the curl_init() to the multi_handle. I tried to pass the same handle but I get in all the cases the result of the last of the resquest.

Any ideas of how to solve it?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.