suchen

Heim  >  Fragen und Antworten  >  Hauptteil

php - 怎么获取到网站的延迟ms

以前没有看到过这种,老板突然说要加个在页面上显示网站的延迟速度 ms 。百度了半天没有找到有用的信息,肯请各位大神告诉一下要怎么实现。

仅有的幸福仅有的幸福2811 Tage vor427

Antworte allen(1)Ich werde antworten

  • phpcn_u1582

    phpcn_u15822017-05-16 12:59:55

    if (strcasecmp(PHP_OS, 'WINNT') === 0) {
        // Windows 服务器下
        $pingresult = exec("ping -n 1 {$address}", $outcome, $status);
    } elseif (strcasecmp(PHP_OS, 'Linux') === 0) {
        // Linux 服务器下
        $pingresult = exec("ping -c 1 {$address}", $outcome, $status);
    }  

    Antwort
    0
  • StornierenAntwort