1

我正在尝试使用 cURL 测试来自几个客户端网站的服务器响应,以仅检索标头,包裹在微时间调用中以计算完整执行时间(用于服务器往返)和 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 中传递的。我试过设置引荐来源网址,但这没有帮助。

谢谢,

4

1 回答 1

1

如果您只需要标题的第一行,那么使用 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);
于 2013-05-12T08:58:00.383 回答