PHP Set-Cookie 在标头中用于下一个请求


PHP Set-Cookie in the header for next request

我使用 php curl 向服务器发送请求,我得到的服务器响应如下:

Array
(
 [0] => HTTP/1.1 200 OK
 [1] => Connection: close
 [2] => Date: Mon, 15 Jun 2015 10:34:22 GMT
 [3] => Server: Microsoft-IIS/6.0
 [4] => X-Powered-By: ASP.NET
 [5] => X-AspNet-Version: 1.1.4322
 [6] => Set-Cookie: ASP.NET_SessionId=qqvn5y55p2cwqkmkdt5z1455; path=/
 [7] => Cache-Control: private, max-age=0
 [8] => Content-Type: text/xml; charset=utf-8
 [9] => Content-Length: 1379
 )

在下一个请求中,我必须发送此会话 ID 以发送 XML。但我不知道如何使用 CURL 方法通过标头发送该会话 ID。

 curl_setopt($ch, CURLOPT_COOKIE, session_name().'='.session_id()); 
or

 curl_setopt($ch, CURLOPT_COOKIE, $cookie);