1

我正在发出 cURL 请求exampleA.com以获取其响应标头。到目前为止一切顺利,这些是我得到的一些数据:

Array
(
    [0] =>  sess=1; path=/; expires=Wed, 15-May-2013 09:25:29 GMT; domain=.exampleA.com; HttpOnly
    [1] =>  .........
)

现在这对我来说是困难的部分,我想将 cookie 设置为我自己的 domain exampleB.com,就像我从中获取它一样exampleA.com

使用 Firebug,这是 Response Header 在exampleA.com

Set-Cookie:uuid2=4511997856767122744; path=/; expires=Mon, 12-Aug-2013 09:21:38 GMT; domain=.exampleA.com; HttpOnly

所以我需要将 cookie 设置为相同的值,但在exampleB.com. 我怎么做?

4

1 回答 1

4
$ch = curl_init('http://www.google.com/');
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);

preg_match('/Set-Cookie:[^\r\n]+/', $response, $match); // extract cookie header
$cookie_header = preg_replace('/domain=[^;\r\n]+/', 'domain=.mydomain.com', $match[0]); // replace old domain with your domain

//echo $cookie_header;
header($cookie_header); // set cookie header
于 2013-05-14T10:29:48.897 回答