PHP ob_end_clean() 函数
实例
删除一个输出缓冲区而不将其内容发送到浏览器:
<?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_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+ |