(PHP 5)
curl_multi_init — Devuelve un nuevo identificador por lotes de cURL
recurso curl_multi_init (vacío)
Permite el procesamiento de identificadores de cURL por lotes en paralelo.
Esta función no tiene parámetros.
Devuelve un identificador de lotes de cURL en caso de éxito o FALSE en caso de error.
Este ejemplo creará 2 identificadores de cURL, los agregará a un controlador por lotes y los ejecutará en paralelo.
<?php// Crea un par de recursos cURL $ch1 = curl_init();$ch2 = curl_init();// Establece la URL y las opciones correspondientes curl_setopt($ch1, CURLOPT_URL, "http://www.example.com / ");curl_setopt($ch1, CURLOPT_HEADER, 0);curl_setopt($ch2, CURLOPT_URL, "http://www.php.net/");curl_setopt($ch2, CURLOPT_HEADER, 0);//Crear identificador de cURL por lotes $mh = curl_multi_init();// Agregue 2 identificadores curl_multi_add_handle($mh,$ch1);curl_multi_add_handle($mh,$ch2);$running=null;//Ejecutar el identificador por lotes do { usleep(10000); curl_multi_exec($mh,$running);} while ( $running > 0);//Cerrar todos los identificadores curl_multi_remove_handle($mh, $ch1);curl_multi_remove_handle($mh, $ch2);curl_multi_close($mh);?>