脚本正在工作,但如果主机我试图ping不回答或请求超时我从我的服务器得到错误500。
如果有可能,我想在我的php代码中解决这个问题。
我想要的是如果主机在ping时超时,那么只需显示" timeout"而不是来自服务器的错误。
<html>
<head>
<meta http-equiv="refresh" content="30" >
<?php
error_reporting(0); // Turn off all error reporting
?>
</head>
<body bgcolor="#222222">
<center>
<table width="100%" height="" border="1" cellpadding="3" style="color:black">
<tr>
<td align = center width="150"
<?php
function icmp_checksum($data) {
if (strlen($data) % 2) {
$data .= "\x00";
}
$bit = unpack('n*', $data);
$sum = array_sum($bit);
while ($sum >> 16) {
$sum = ($sum >> 16) + ($sum & 0xffff);
}
return pack('n*', ~$sum);
}
function ping($host) {
$tmp = "\x08\x00\x00\x00\x00\x00\x00\x00PingTest";
$checksum = icmp_checksum($tmp);
$package = "\x08\x00".$checksum."\x00\x00\x00\x00PingTest";
$socket = socket_create(AF_INET, SOCK_RAW, 1);
socket_connect($socket, $host, null);
$timer = microtime(1);
socket_send($socket, $package, strlen($package), 0);
if (socket_read($socket, 255)) {
return round((microtime(1) - $timer) * 1000, 2);
}
}
$host="telia.se";
$pingtime = ping ($host);
if ($pingtime == FALSE)
echo "bgcolor='red" ."' >";
else if ($pingtime > 40)
echo "bgcolor='yellow" ."' >";
else
echo "bgcolor='lime" ."' >";
echo ("<h2><B>$host</b></h2>");
echo $pingtime."ms";
?>
</td>
</tr>
</table>
</center>
</body>
</html>