curl_multi_init


php128 apg

RETURN a new cURL multiple handle.



<?php

CurlMultiHandle curl_multi_init
();

  
?>

  


This function has no parameters.


  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

//execute the multi handle

//close the handles

?>

 RESULT   

SEE the next exercises - other lessons!