= 4.0.2, PHP 5, PHP 7, PHP 8)curl_close — 關(guān)閉 cURL 會話說明curl_close(resource $ch): void關(guān)閉 cURL 會話并且釋放所有資源。cURL 句柄 ch 也會被刪除。 參數(shù)handle 由 ">
(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
curl_close — 關(guān)閉 cURL 會話
$ch
): void
關(guān)閉 cURL 會話并且釋放所有資源。cURL 句柄 ch
也會被刪除。
沒有返回值。
示例 #1 初始化新的 cURL 會話,并獲取一張網(wǎng)頁
<?php
// 創(chuàng)建一個新cURL資源
$ch = curl_init();
// 設(shè)置URL和相應(yī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);
?>