Php/ref output ob end clean

来自菜鸟教程
跳转至:导航、​搜索

PHP ob_end_clean()函数

Output 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";
?>

定义和用法

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

句法

ob_end_clean();

技术细节

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

Output PHP输出控制功能