PHP ob_clean() 函数
示例
在输出发送到浏览器之前删除部分输出
<?php
ob_start();
echo "此输出将不会发送到浏览器";
ob_clean();
echo "此输出将发送到浏览器";
ob_end_flush();
?>
亲自尝试 »
定义和用法
函数 ob_clean()
删除最顶层输出缓冲区的所有内容,防止它们发送到浏览器。
语法
ob_clean();
技术细节
PHP 版本 | 4.2 |
---|
❮ PHP 输出控制函数
在输出发送到浏览器之前删除部分输出
<?php
ob_start();
echo "此输出将不会发送到浏览器";
ob_clean();
echo "此输出将发送到浏览器";
ob_end_flush();
?>
亲自尝试 »
函数 ob_clean()
删除最顶层输出缓冲区的所有内容,防止它们发送到浏览器。
ob_clean();
PHP 版本 | 4.2 |
---|
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]