쿠키 포함 응답과 같은 비전통적인 통신 프로토콜을 처리할 때 쿠키를 효율적으로 추출하는 것이 어려울 수 있습니다. 이 기사에서는 파일에 쓰거나 지루한 구문 분석을 수행할 필요 없이 간단한 솔루션을 제공하여 이 문제를 해결합니다.
$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 응답에서 쿠키를 효율적으로 추출하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!