如何使用PHP获取服务器响应时间

时间:2015-12-03 07:04:11

标签: php server

我在php中需要一个脚本来检查来自另一个服务器的正常HTTP响应,例如http://www.example.com,这是一个状态脚本,用于查看其他服务器的行为是否符合要求。

任何人都可以帮助我?

2 个答案:

答案 0 :(得分:9)

你可以在php中使用cURL的帮助。您可以发送请求并查看请求的确切时间。

<?php
  if(!isset($_GET['url']))
  die("enter url");
  $ch = curl_init($_GET['url']); //get url http://www.xxxx.com/cru.php?url=http://www.example.com
  curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
  if(curl_exec($ch))
  {
  $info = curl_getinfo($ch);
  echo 'Took ' . $info['total_time'] . ' seconds to transfer a request to ' . $info['url'];
  }

  curl_close($ch);
?>

答案 1 :(得分:2)

如果您已经有网址,则可以将其传递给此功能,您将获得响应时间:

<?php
// check responsetime for a webbserver
function pingDomain($domain){
    $starttime = microtime(true);
    // supress error messages with @
    $file      = @fsockopen($domain, 80, $errno, $errstr, 10);
    $stoptime  = microtime(true);
    $status    = 0;

    if (!$file){
        $status = -1;  // Site is down
    }
    else{
        fclose($file);
        $status = ($stoptime - $starttime) * 1000;
        $status = floor($status);
    }
    return $status;
}
?>
  

http://tech.fireflake.com/2008/09/17/using-php-to-check-response-time-of-http-server/