Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to use curl_multi_add_handle() to add cURL handle to a cURL multi handle in PHP

1 Answer

0 votes
$curl1 = curl_init();
$curl2 = curl_init();

curl_setopt($curl1, CURLOPT_URL, "http://www.webshopy.com/");
curl_setopt($curl1, CURLOPT_HEADER, 0);
curl_setopt($curl2, CURLOPT_URL, "http://www.seek4info.com/");
curl_setopt($curl2, CURLOPT_HEADER, 0);

$cum = curl_multi_init();

curl_multi_add_handle($cum, $curl1);
curl_multi_add_handle($cum, $curl2);

$ex = null;

do {
    curl_multi_exec($cum, $ex);
} while($ex > 0);


curl_multi_remove_handle($cum, $curl1);
curl_multi_remove_handle($cum, $curl2);
curl_multi_close($cum);


/*
run: 

check your browser 

*/

 



answered Jun 7, 2016 by avibootz
edited Jun 8, 2016 by avibootz

Related questions

1 answer 133 views
1 answer 161 views
1 answer 155 views
155 views asked Oct 20, 2020 by avibootz
1 answer 241 views
1 answer 23,768 views
1 answer 177 views
...