gpt4 book ai didi

PHP cURL header 请求在某些服务器上返回 400

转载 作者:塔克拉玛干 更新时间:2023-11-01 19:10:33 24 4
gpt4 key购买 nike

我正在尝试使用 cURL 测试来自几个客户端网站的服务器响应,以仅检索 header ,包装在微时间调用中以计算完整的执行时间(用于服务器往返)和 HTTP 状态代码,以便我自己和客户可以知道任何问题。

我需要通过服务器 IP 调用 cURL 并在那里定义主机,因为我想 100% 确定消除 DNS 服务器停机时间 - 我正在使用另一个脚本来确保我的 DNS 副本是最新的,所以这不是一个问题。

我使用的是以下代码,它在 90% 的服务器上工作,但尽管可以在浏览器中访问,但少数服务器拒绝使用 400 和 404 代码。

    // Setup headers
$header[] = "Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5";
$header[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
$header[] = "Accept-Language: en-us,en;q=0.5";
$header[] = "Cache-Control: max-age=0";
$header[] = "Connection: keep-alive";
$header[] = "Host: $this->url";
$header[] = "Keep-Alive: 300";
$header[] = "Pragma: "; // browsers keep this blank.

$starttime = microtime(true);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "http://{$this->ip}/");
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
curl_setopt($curl, CURLOPT_USERAGENT,"MyMonitor/UpCheck");
// curl_setopt($curl, CURLOPT_REFERER, 'http://www.mysite.com/');
curl_setopt($curl, CURLOPT_HTTPGET, true);
curl_setopt($curl, CURLOPT_NOBODY, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, false);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, false);
curl_setopt($curl, CURLOPT_TIMEOUT, $this->timeout); //timeout in seconds
$this->header = curl_exec($curl);
$this->statuscode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
curl_close($curl);

代码被包裹在一个对象中,所有相关变量都被正确传递、修剪和清理。因为我需要调用服务器 IP,所以它作为 CURLOPT_URL 传递,URL 在 Header 中传递。我试过设置 referer,但这没有用。

谢谢,

最佳答案

如果您只需要标题的第一行,那么使用 curl 就有点过分了。使用套接字函数,您可以在收到第一行状态代码后立即关闭连接:

$conn = fsockopen($this->ip, 80);
$nl = "\r\n";
fwrite($conn, 'GET / HTTP/1.1'.$nl);
foreach($header as $h) {
fwrite($conn, $h.$nl);
}
fwrite($conn, $nl);

$statusLine = fgets($conn);
fclose($conn);

$status = substr($statusLine, 9, 3);

关于PHP cURL header 请求在某些服务器上返回 400,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16497438/

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