输出缓冲区的内容而不删除它:
<?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+ |
---|
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!