Home  >  Article  >  php教程  >  PHP使用curl

PHP使用curl

WBOY
WBOYOriginal
2016-06-06 19:54:481101browse

http://www.php.net/manual/zh/function.curl-multi-add-handle.php ?php // 创建一对cURL资源 $ch1 = curl_init (); $ch2 = curl_init (); // 设置URL和相应的选项 curl_setopt ( $ch1 , CURLOPT_URL , http://www.baidu.com/ ); curl_setopt ( $ch1 , CURL

http://www.php.net/manual/zh/function.curl-multi-add-handle.php

 

// 创建一对cURL资源
$ch1 = curl_init();
$ch2 = curl_init();

// 设置URL和相应的选项
curl_setopt($ch1, CURLOPT_URL, "http://www.baidu.com/");
curl_setopt($ch1, CURLOPT_HEADER, 0);
curl_setopt($ch2, CURLOPT_URL, "http://www.php.net/");
curl_setopt($ch2, CURLOPT_HEADER, 0);

// 创建批处理cURL句柄
$mh = curl_multi_init();

// 增加2个句柄
curl_multi_add_handle($mh,$ch1);
curl_multi_add_handle($mh,$ch2);

$running=null;
// 执行批处理句柄
do {
   
curl_multi_exec($mh,$running);
} while(
$running > 0);

// 关闭全部句柄
curl_multi_remove_handle($mh, $ch1);
curl_multi_remove_handle($mh, $ch2);
curl_multi_close($mh);
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP 调用C的代码Next article:Zend API:深入 PHP 内核