PHP curl_close函數(shù)
PHP curl_close函數(shù)
(PHP 4 >= 4.0.2, PHP 5)
curl_close — 關(guān)閉一個(gè)cURL會(huì)話
說明
void curl_close ( resource $ch )
關(guān)閉一個(gè)cURL會(huì)話并且釋放所有資源。cURL句柄ch 也會(huì)被釋放。
參數(shù)
ch
由 curl_init() 返回的 cURL 句柄。
返回值
沒有返回值。
實(shí)例
初始化一個(gè)cURL會(huì)話來獲取一個(gè)網(wǎng)頁
<?php // 創(chuàng)建一個(gè)新cURL資源 $ch = curl_init(); // 設(shè)置URL和相應(yīng)的選項(xiàng) curl_setopt($ch, CURLOPT_URL, "http://www.w3cschool.cc/"); curl_setopt($ch, CURLOPT_HEADER, 0); // 抓取URL并把它傳遞給瀏覽器 curl_exec($ch); // 關(guān)閉cURL資源,并且釋放系統(tǒng)資源 curl_close($ch); ?>
參見
- curl_init() - 初始化一個(gè)cURL會(huì)話
- curl_multi_close() - 關(guān)閉一組cURL句柄
相關(guān)文章
- PHP 教程
- PHP echo 和 print 語句
- PHP array_change_key_case() 函數(shù)
- PHP array_column() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP array_unshift() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP arsort() 函數(shù)
- PHP in_array() 函數(shù)
- PHP natsort() 函數(shù)
- PHP pos() 函數(shù)
- PHP reset() 函數(shù)
- PHP uasort() 函數(shù)
- PHP usort() 函數(shù)