PHP 手冊示範如何使用 file_get_contents() 使用串流上下文傳送 Cookie。但是,該範例僅顯示如何傳送單一 cookie。本文探討如何使用此方法發送多個 cookie。
考慮以下程式碼:
<code class="php">// 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);</code>
此程式碼會傳送一個名為「foo」、值為「bar」的 cookie。若要傳送多個 cookie,您可以使用以下方法:
選項 1: 使用 ;分隔符,用於將 Cookie 物件組合成單一「Cookie」標頭。
<code class="php">$opts['http']['header'] .= "Cookie: user=3345; pass=abcd\r\n";</code>
選項 2: 為每個 Cookie 發送單獨的「Cookie」標頭。
<code class="php">$opts['http']['header'] .= "Cookie: user=3345\r\nCookie: pass=abcd\r\n";</code>
選項 3(建議): 使用 ;分隔符號將多個 cookie 對組合成一個「Cookie」標頭。但是,請用空格分隔每個 cookie 對以提高可讀性。
<code class="php">$opts['http']['header'] .= "Cookie: user=3345; pass=abcd\n";</code>
以上是如何使用 file_get_contents() 傳送多個 Cookie?的詳細內容。更多資訊請關注PHP中文網其他相關文章!