首頁 >後端開發 >php教程 >如何有效地從 PHP cURL 回應中提取 Cookie?

如何有效地從 PHP cURL 回應中提取 Cookie?

Susan Sarandon
Susan Sarandon原創
2024-12-27 16:49:101003瀏覽

How to Efficiently Extract Cookies from a PHP cURL Response?

從 PHP cURL 回應中擷取 Cookie

處理非常規通訊協定(例如嵌入 cookie 的回應)時,有效擷取 cookie 可能是一個挑戰。本文透過提供一個簡單的解決方案來解決這個問題,無需寫入檔案或進行繁瑣的解析。

$ch = curl_init('http://www.google.com/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// Retrieve headers along with the response
curl_setopt($ch, CURLOPT_HEADER, 1);
$result = curl_exec($ch);

// Extract cookies using regular expression
preg_match_all('/^Set-Cookie:\s*([^;]*)/mi', $result, $matches);

// Convert cookies to an array
$cookies = array();
foreach ($matches[1] as $item) {
    parse_str($item, $cookie);
    $cookies = array_merge($cookies, $cookie);
}

// Print the collected cookies
var_dump($cookies);

以上是如何有效地從 PHP cURL 回應中提取 Cookie?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn