Jump to content

Multiple cURL sessions


freeloader

Recommended Posts

Hi guys,

I was wondering whether it was possible to have multiple cURL sessions launch at the same time. I found out about the multi_init function, but does it satisfy my needs, and if so: can somebody explain me how it works? Php.net haven't documented this function yet. Alternatively, is it possible to launch multiple functions at the same time?
Link to comment
Share on other sites

You could use a callback function and multiple curl_exec if you don't want to use multi_init. E.g.

$hCurl = curl_init();
curl_setopt($hCurl, CURLOPT_WRITEFUNCTION, 'TransactionResultCallback');
$Output = curl_exec($hCurl);

$hCurl2 = curl_init();
curl_setopt($hCurl2, CURLOPT_WRITEFUNCTION, 'TransactionResultCallback2');
$Output = curl_exec($hCurl2);

You will probably need to use a global variable to store the returned string in your callback functions.


Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.