Home > php教程 > php手册 > body text

PHP使用curl

WBOY
Release: 2016-06-06 19:54:48
Original
1100 people have browsed it

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);
?>

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!