时间:2021-07-01 10:21:17 帮助过:3人阅读
'; } echo 'Pinging '.$host.' ['.gethostbyname($host).'] with Port:'.$port.' of data:
'."\r\n"; for($i = 0;$i < $num;$i++) { echo ping($host,$port); sleep(1); ob_flush(); flush(); } ?>
------解决方案--------------------
用 php 中的 exec() 调用命令来实现 最好。
------解决方案--------------------
$ip = "192.168.1.1";
exec( "ping $ip ", $arr);
print_r($arr);