卷曲和ping - 如何检查网站是上升还是下降?

时间:2011-01-05 18:20:41

标签: php curl webserver http-status-codes ping

我想使用PHP检查网站在特定实例中是上升还是下降。我开始知道curl会获取文件的内容,但我不想阅读网站的内容。我只想查看网站的状态。有没有办法检查网站的状态?我们可以使用ping来检查状态吗?我可以从服务器获取状态信号(404,403等)。一小段代码可能对我有很大的帮助。

7 个答案:

答案 0 :(得分:44)

这样的事情应该起作用

    $url = 'yoururl';
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_NOBODY, true);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
    curl_exec($ch);
    $retcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);
    if (200==$retcode) {
        // All's well
    } else {
        // not so much
    }

答案 1 :(得分:9)

function checkStatus($url) {
    $agent = "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; pt-pt) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27";

    // initializes curl session
    $ch = curl_init();

    // sets the URL to fetch
    curl_setopt($ch, CURLOPT_URL, $url);

    // sets the content of the User-Agent header
    curl_setopt($ch, CURLOPT_USERAGENT, $agent);

    // make sure you only check the header - taken from the answer above
    curl_setopt($ch, CURLOPT_NOBODY, true);

    // follow "Location: " redirects
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

    // return the transfer as a string
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    // disable output verbose information
    curl_setopt($ch, CURLOPT_VERBOSE, false);

    // max number of seconds to allow cURL function to execute
    curl_setopt($ch, CURLOPT_TIMEOUT, 5);

    // execute
    curl_exec($ch);

    // get HTTP response code
    $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);

    curl_close($ch);

    if ($httpcode >= 200 && $httpcode < 300)
        return true;
    else
        return false;
}

// how to use
//===================
if ($this->checkStatus("http://www.dineshrabara.in"))
    echo "Website is up";
else
    echo "Website is down";
exit;

答案 2 :(得分:8)

curl -Is $url | grep HTTP | cut -d ' ' -f2

答案 3 :(得分:5)

你见过get_headers()函数吗? http://it.php.net/manual/en/function.get-headers.php。它似乎完全符合你的需要。

如果直接使用curl -I标志,它将返回HTTP标头(404等)而不是页面HTML。在PHP中,等效的是curl_setopt($ch, CURLOPT_NOBODY, 1);选项。

答案 4 :(得分:4)

ping将无法满足您的需求 - 它只会告诉您机器是否已启动(并响应ping)。但这并不一定意味着网络服务器正在运行。

您可能想尝试使用http_head方法 - 它会检索网络服务器发回给您的标头。如果服务器正在发送回标头,那么您就知道它已启动并正在运行。

答案 5 :(得分:4)

我是这样做的。我设置用户代理以最小化目标禁止我的可能性并且还禁用了SSL验证,因为我知道目标:

private static function checkSite( $url ) {
    $useragent = $_SERVER['HTTP_USER_AGENT'];

    $options = array(
            CURLOPT_RETURNTRANSFER => true,      // return web page
            CURLOPT_HEADER         => false,     // do not return headers
            CURLOPT_FOLLOWLOCATION => true,      // follow redirects
            CURLOPT_USERAGENT      => $useragent, // who am i
            CURLOPT_AUTOREFERER    => true,       // set referer on redirect
            CURLOPT_CONNECTTIMEOUT => 2,          // timeout on connect (in seconds)
            CURLOPT_TIMEOUT        => 2,          // timeout on response (in seconds)
            CURLOPT_MAXREDIRS      => 10,         // stop after 10 redirects
            CURLOPT_SSL_VERIFYPEER => false,     // SSL verification not required
            CURLOPT_SSL_VERIFYHOST => false,     // SSL verification not required
    );
    $ch = curl_init( $url );
    curl_setopt_array( $ch, $options );
    curl_exec( $ch );

    $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);
    return ($httpcode == 200);
}

答案 6 :(得分:2)

您无法使用ping测试网络服务器,因为它的服务不同。服务器可能正在运行,但是webserver-daemon无论如何都可能崩溃。所以curl是你的朋友。只需忽略内容。