PHP curl_share_init函數
PHP curl_share_init函數
(PHP 5 >= 5.5.0)
curl_share_init — 初始化一個 cURL 共享句柄
說明
resource curl_share_init ( void )
允許兩個 cURL 句柄分享數據。
參數
此函數沒有參數。
返回值
返回"cURL共享句柄"的資源。
實例
該實例將創建一個cURL共享句柄,并添加兩個 cURL 句柄,兩個句柄共享cookie數據。
<?php // 創建cURL共享句柄并設置cookie數據 $sh = curl_share_init(); curl_share_setopt($sh, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE); // 初始化第一個cURL句柄并指定它為共享句柄 $ch1 = curl_init("http://www.w3cschool.cc/"); curl_setopt($ch1, CURLOPT_SHARE, $sh); // 執行第一個cURL句柄 curl_exec($ch1); // 初始化第二個cURL句柄并指定它為共享句柄 $ch2 = curl_init("http://php.net/"); curl_setopt($ch2, CURLOPT_SHARE, $sh); // 執行第二個cURL句柄 // 所有 $ch1 句柄的數據在 $ch2 句柄中共享 curl_exec($ch2); // 關閉cURL共享句柄 curl_share_close($sh); // 關閉cURL句柄 curl_close($ch1); curl_close($ch2); ?>
相關文章
- PHP EOF(heredoc) 使用說明
- PHP If Else 語句
- PHP While 循環
- PHP 函數
- PHP 多維數組
- PHP 文件處理
- PHP 異常處理
- PHP array_filter() 函數
- PHP array_key_first() 函數
- PHP array_key_last() 函數
- PHP array_keys() 函數
- PHP array_replace() 函數
- PHP array_shift() 函數
- PHP array_unshift() 函數
- PHP list() 函數
- PHP shuffle() 函數
- PHP 5 Array 函數
- PHP cURL 函數
- PHP FTP 函數
- PHP 5 MySQLi 函數