我有这部分PHP代码:
for ($x=0; $x<$attempts; $x++) {
$starttime = microtime(true);
if ($fp = fsockopen($host,$port,$errCode,$errStr,$waitTimeoutInSeconds)) {
$endtime = microtime(true);
$time = round((($endtime - $starttime) * 1000), 0)." ms";
echo "Ping $host Succesfull in $time<br>";
fclose($fp);
} else {
echo "Can't Ping<br>";
}
}
我希望它以交互方式显示输出结果,在结果之间有一秒延迟。
尝试过
flush()
以及ob_flush()
和ob_implicit_flush(true);
但没有运气,我在脚本完成后得到了结果。
是否可以使用JavaScript或PHP本身,我不在乎......
祝你好运