我正在尝试使用 file_get_context 发送标头:
例子.php
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"
)
);
$context = stream_context_create($opts);
$response = file_get_contents($request_url, false, $context);
我如何检查 example.php 是否发送了标头?我尝试在 request_url.php 处使用 get_headers('example.php') 或在'example.php' 处使用 headers_sent()。检查 file_get_contents() 发送的标头的任何其他建议