目录

PHP flush() 函数

❮ PHP 输出控制函数

示例

在脚本运行完成之前向浏览器输出一个字符串:

<?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+

❮ PHP 输出控制函数