我试图通过让字符串迭代一定次数来在我的 WAMP 服务器上实现一个简单的 while 循环。但是,尽管在 WAMP PHP 设置中关闭了输出缓冲,但整个输出会立即发生。
版本 1
$i = 0;
while ($i < 5)
{
print ("This is an example of a while loop.<br/>");
flush();
sleep(1);
$i++;
}
版本 2
$i = 0;
while ($i < 5)
{
print ("This is an example of a while loop.<br/>");
ob_start();
ob_flush();
flush();
sleep(1);
$i++;
}
两个版本都没有按照我想要的方式输出字符串,即一次一个,间隔一秒。任何帮助是极大的赞赏。