在发送到浏览器之前删除一些输出:
<?php
ob_start();
echo "This output will not be sent to the browser";
ob_clean();
echo "This output will be sent to the browser";
ob_end_flush();
?>
亲自试一试 »
这个ob_clean()
函数删除最顶层输出缓冲区的所有内容,防止它们发送到浏览器。
ob_clean();
PHP 版本: | 4.2 |
---|
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!