PHP Output Control ob_get_contents() Function

PHP Output Control Functions : Store the contents of an output buffer in a variable

Definition and Usage

The ob_get_contents() function returns the contents of the topmost output buffer.

Syntax

ob_get_contents();

Technical Details

Return Value: Returns a string containing the contents of the buffer
PHP Version: 4.3+

❮ PHP Output Control Functions