gpt4 book ai didi

php - 使用 PHP 发出 HTTP/2 请求

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:07:54 25 4
gpt4 key购买 nike

有没有办法强制 PHP 与另一台服务器建立 HTTP2 连接,只是为了查看该服务器是否支持它?

我试过:

$options = stream_context_create(array(
'http' => array(
'method' => 'GET',
'timeout' => 5,
'protocol_version' => 1.1
)
));
$res = file_get_contents($url, false, $options);
var_dump($http_response_header);

并尝试过:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTP_VERSION, 3);
$response = curl_exec($ch);
var_dump($response);
curl_close($ch);

但如果我使用以下 URL https://www.google.com/#q=apache+2.5+http%2F2

,这两种方式都会给我一个 HTTP1.1 响应

我从启用了 HTTP/2 + SSL 的域发送请求。我做错了什么?

最佳答案

据我所知,cURL 是 PHP 中唯一支持 HTTP 2.0 的传输方法。

您首先需要测试您的 cURL 版本是否支持它,然后设置正确的版本 header :

if (
defined("CURL_VERSION_HTTP2") &&
(curl_version()["features"] & CURL_VERSION_HTTP2) !== 0
) {
$url = "https://www.google.com/";
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL =>$url,
CURLOPT_HEADER =>true,
CURLOPT_NOBODY =>true,
CURLOPT_RETURNTRANSFER =>true,
CURLOPT_HTTP_VERSION =>CURL_HTTP_VERSION_2_0,
]);
$response = curl_exec($ch);
if ($response !== false && strpos($response, "HTTP/2") === 0) {
echo "HTTP/2 support!";
} elseif ($response !== false) {
echo "No HTTP/2 support on server.";
} else {
echo curl_error($ch);
}
curl_close($ch);
} else {
echo "No HTTP/2 support on client.";
}

关于php - 使用 PHP 发出 HTTP/2 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37140780/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com