php - 怎么获取到网站的延迟ms
仅有的幸福
仅有的幸福 2017-05-16 12:57:55
0
1
410

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

仅有的幸福
仅有的幸福

Antworte allen(1)
phpcn_u1582
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);
}  
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage