= 4.0.2, PHP 5, PHP 7, PHP 8)curl_close — 關(guān)閉 cURL 會(huì)話說(shuō)明curl_close(resource $ch): void關(guān)閉 cURL 會(huì)話并且釋放所有資源。cURL 句柄 ch 也會(huì)被刪除。 參數(shù)handle 由 ">
(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
curl_close — 關(guān)閉 cURL 會(huì)話
$ch
): void
關(guān)閉 cURL 會(huì)話并且釋放所有資源。cURL 句柄 ch
也會(huì)被刪除。
沒(méi)有返回值。
示例 #1 初始化新的 cURL 會(huì)話,并獲取一張網(wǎng)頁(yè)
<?php
// 創(chuàng)建一個(gè)新cURL資源
$ch = curl_init();
// 設(shè)置URL和相應(yīng)的選項(xiàng)
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);
// 抓取URL并把它傳遞給瀏覽器
curl_exec($ch);
// 關(guān)閉cURL資源,并且釋放系統(tǒng)資源
curl_close($ch);
?>