PHP Output Control ob_clean() Function

PHP Output Control Functions : Delete some output before it can get sent to the browser

Definition and Usage

The ob_clean() function deletes all of the contents of the topmost output buffer, preventing them from getting sent to the browser.

Syntax

ob_clean();

Technical Details

PHP Version: 4.2

❮ PHP Output Control Functions