目录

PHP ob_end_clean() 函数

❮ PHP 输出控制函数

示例

删除输出缓冲区而不将其内容发送到浏览器:

<?php
ob_start();
echo "This output will not be sent to the browser";
ob_end_clean();
echo "This output will be sent to the browser";
?>
亲自试一试 »

定义和用法

这个ob_end_clean()函数删除最顶层的输出缓冲区及其所有内容,而不向浏览器发送任何内容。


语法

ob_end_clean();

技术细节

返回值: 如果操作成功则返回 true,如果失败则返回 false
PHP 版本: 4+

❮ PHP 输出控制函数