Chinaunix首页 | 论坛 | 博客
  • 博客访问: 17758112
  • 博文数量: 7460
  • 博客积分: 10434
  • 博客等级: 上将
  • 技术积分: 78178
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-02 22:54
文章分类

全部博文(7460)

文章存档

2011年(1)

2009年(669)

2008年(6790)

分类:

2008-04-18 08:30:25

// created by joe lumbroso
// see some other good php3 scripts
// goto

echo "Pinging
";
$to_ping = "dtheatre.com";
$count = 3;
$psize = 65;
echo " Please be patient, this can take a few moments...\n

";
flush();

while (1) {
?>

 
exec("ping -c $count -s $psize $to_ping", $list);
for ($i=0;$i < count($list);$i++) {
print $list[$i]."\n";
}
?>

flush();
sleep(3);
}
?>

阅读(810) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~