Heim > Fragen und Antworten > Hauptteil
以前没有看到过这种,老板突然说要加个在页面上显示网站的延迟速度 ms 。百度了半天没有找到有用的信息,肯请各位大神告诉一下要怎么实现。
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);
}