共计 508 个字符,预计需要花费 2 分钟才能阅读完成。
在 PHP 中,你可以使用 file_get_contents()
函数来发送 GET 请求,并设置请求头。以下是一个示例代码:
<?php
// 创建请求头数组
$options = array('http' => array('header' => "Content-Type: application/x-www-form-urlencoded\r\n"
)
);
// 创建请求上下文
$context = stream_context_create($options);
// 发送 GET 请求
$response = file_get_contents('http://example.com/api', false, $context);
// 输出响应内容
echo $response;
?>
在上述示例代码中,我们首先创建了一个包含 Content-Type
请求头的关联数组 $options
。然后使用stream_context_create()
函数将该数组转换为请求上下文。最后,通过调用 file_get_contents()
函数发送 GET 请求,并传递请求上下文作为第三个参数。
丸趣 TV 网 – 提供最优质的资源集合!
正文完