PHP手册上的示例显示了如何使用流上下文发送cookie.以下是摘录:
// Create a stream
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"
)
);
$context = stream_context_create($opts);
// Open the file using the HTTP headers set above
$file = file_get_contents('http://www.example.com/', false, $context);
Run Code Online (Sandbox Code Playgroud)
你如何发送多个cookie?像#1或#2,或者什么?
#1
"Cookie: user=3345&pass=abcd\r\n"
Run Code Online (Sandbox Code Playgroud)
#2
"Cookie: user=3345\r\n" .
"Cookie: pass=abcd\r\n"
Run Code Online (Sandbox Code Playgroud)
mvd*_*vds 58
#3
Cookie: user=3345; pass=abcd
Run Code Online (Sandbox Code Playgroud)