在脚本运行完成之前向浏览器输出一个字符串:
<?php
// Some browsers will not display the content if it is too short
// We use str_pad() to make the output long enough
echo str_pad("Hello World!", 4096);
// Use flush() to send the string to the browser
flush();
// Display the rest of the content three seconds later
sleep(3);
echo "<br>";
echo "Hello World!";
?>
亲自试一试 »
这个flush()
函数请求服务器将其当前缓冲的输出发送到浏览器。服务器配置可能并不总是允许这种情况发生。
flush();
PHP 版本: | 4+ |
---|
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!