處理非常規通訊協定(例如嵌入 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中文網其他相關文章!