如何在get请求中发送下一个cookie?

I receive 503 error, but if i send it from inspect element its fine.

The code worked for me before, but in the last few hours the specific website added cf_clearance and I need to add it to the request as well

How do i send the both cookies?

$opts = array(
'http'=>array(
'method'=>"GET",
'proxy'=>"",
'header'=> "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:51.0) Gecko/20100101 Firefox/51.0
" .
           "Cookie: cf_clearance=3de18fcd39d55ce82d9db-1529352303-31536000; PHPSESSID=oahfun4m7vi3edd71
"
));
$context = stream_context_create($opts);
$url = "http://website.com";

$data = file_get_contents($url, false, $context);

echo $data;

There's a pretty good example in the documentation.

$opts = array(
  'http'=>array(
    'method'=>"GET",
    'header'=>"Accept-language: en
" .
              "Cookie: foo=bar
"
  )
);

Add line breaks and concatenate. Your example right now should be resulting in a syntax error because you are not concatenating the two strings.