PHP ob_flush() 函数
实例
输出缓冲区的内容而不删除它:
<?php
ob_start();
echo "This output will be sent to the browser";
ob_flush();
echo "This output will not be sent to the browser";
ob_end_clean();
?>
亲自试一试 »
定义和用法
ob_flush()
函数输出最顶层输出缓冲区的内容,然后清除缓冲区的内容。 输出可能被另一个输出缓冲区捕获,或者,如果没有其他输出缓冲区,则直接发送到浏览器。
语法
ob_flush();
技术细节
PHP 版本: | 4.2+ |
---|
❮ PHP 输出控制函数