curl_multi_add_handle


php128 apg

RETURN a normal new cURL to a cURL multiple handle.

This function returns 0, (zero), or one of the CURLM_XXX errors code.



<?php

int curl_multi_add_handle
(CurlMultiHandle $multi_handleCurlHandle $handle);


where

$multi_handle 
A cURL multi handle returned by curl_multi_init()

$handle A cURL handle returned by curl_init()

  
?>

 $multi_handle 


A cURL multi handle returned by curl_multi_init().


 $handle 


A cURL handle returned by curl_init().


  1 EXERCISE   

<?php
// create both cURL resources
$ch1 curl_init();
$ch2 curl_init();

// set URL and other appropriate options
curl_setopt($ch1CURLOPT_URL"https://php.net/");
curl_setopt($ch1CURLOPT_HEADER0);
curl_setopt($ch2CURLOPT_URL"https://ed48.com/");
curl_setopt($ch2CURLOPT_HEADER0);

//create the multiple cURL handle
$mh curl_multi_init();

//add the two handles
curl_multi_add_handle($mh,$ch1);
curl_multi_add_handle($mh,$ch2);

//execute the multi handle

//close the handles

?>

 RESULT   

SEE the next exercises - other lessons!