PHP curl_multi_close函數
PHP curl_multi_close函數
(PHP 5)
curl_multi_close — 關閉一組cURL句柄
說明
void curl_multi_close ( resource $mh )
關閉一組cURL句柄。
參數
mh
由 curl_multi_init() 返回的 cURL 多個句柄。
返回值
沒有返回值。
實例
這個范例將會創(chuàng)建2個cURL句柄,把它們加到批處理句柄,然后并行地運行它們。
<?php // 創(chuàng)建一對cURL資源 $ch1 = curl_init(); $ch2 = curl_init(); // 設置URL和相應的選項 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); // 創(chuàng)建批處理cURL句柄 $mh = curl_multi_init(); // 增加2個句柄 curl_multi_add_handle($mh,$ch1); curl_multi_add_handle($mh,$ch2); $running=null; // 執(zhí)行批處理句柄 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); ?>
相關文章
- PHP 教程
- PHP EOF(heredoc) 使用說明
- PHP If Else 語句
- PHP 函數
- PHP 魔術常量
- PHP 過濾器
- PHP JSON
- PHP array_column() 函數
- PHP array_diff_ukey() 函數
- PHP array_intersect() 函數
- PHP array_intersect_assoc() 函數
- PHP array_merge() 函數
- PHP array_product() 函數
- PHP array_rand() 函數
- PHP array_uintersect_uassoc() 函數
- PHP array_values() 函數
- PHP array_walk_recursive() 函數
- PHP asort() 函數
- PHP end() 函數
- PHP natcasesort() 函數