使用 file_get_contents() 自定义 HTTP 标头
PHP 的 file_get_contents() 函数是用于检索 Web 资源的多功能工具。它通常与有限的选项一起使用,让用户想知道它的全部功能。特别是,使用 file_get_contents() 发送自定义 HTTP 标头一直是一个争论的话题。
这可能吗?
是的,可以发送自定义 HTTP 标头使用 file_get_contents()。这可以通过使用stream_context_create()创建流上下文并在http选项中设置所需的标头来实现。
// Create a stream context with custom headers $opts = [ "http" => [ "method" => "GET", "header" => "Accept-language: en\r\nCookie: foo=bar\r\n" ] ]; $context = stream_context_create($opts); // Retrieve the web resource using the custom stream context $file = file_get_contents('http://www.example.com/', false, $context);
在此示例中,我们设置“Accept-language”和“Cookie”标头,但您可以根据需要添加任何有效的 HTTP 标头。
替代方案方法
虽然带有自定义流上下文的 file_get_contents() 是一个可行的选项,但还有其他函数可用于发送自定义 HTTP 标头。
选择使用哪个函数取决于项目的具体要求和偏好。
以上是PHP 中的 file_get_contents() 可以发送自定义 HTTP 标头吗?的详细内容。更多信息请关注PHP中文网其他相关文章!