我使用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。
答案 0 :(得分:1)
curl_setopt($ch, CURLOPT_COOKIE, session_name().'='.session_id());
or
curl_setopt($ch, CURLOPT_COOKIE, $cookie);