PHP – 使用file_get_contents发送cookie

PHP手册上的示例显示了如何使用stream上下文来发送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); 

你如何发送多个cookie? 像#1或#2,还是什么?

#1

 "Cookie: user=3345&pass=abcd\r\n" 

#2

 "Cookie: user=3345\r\n" . "Cookie: pass=abcd\r\n" 

#3

 Cookie: user=3345; pass=abcd 

两者都不正确。 你把他们分开;

 Cookie: user=3345; pass=abcd