Php/ref output ob flush
来自菜鸟教程
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(); ?>
定义和用法
The
ob_flush()
函数输出最上面的输出缓冲区的内容,然后清除内容的缓冲区。输出可能被另一个输出缓冲区捕获,或者,如果没有其他输出缓冲区,则直接发送到浏览器。
句法
ob_flush();
技术细节
PHP版本: | 4.2+ |