php man page for ob_get_contents

Query: ob_get_contents

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

OB_GET_CONTENTS(3)							 1							OB_GET_CONTENTS(3)

ob_get_contents - Return the contents of the output buffer

SYNOPSIS
string ob_get_contents (void )
DESCRIPTION
Gets the contents of the output buffer without clearing it.
RETURN VALUES
This will return the contents of the output buffer or FALSE, if output buffering isn't active.
EXAMPLES
Example #1 A simple ob_get_contents(3) example <?php ob_start(); echo "Hello "; $out1 = ob_get_contents(); echo "World"; $out2 = ob_get_contents(); ob_end_clean(); var_dump($out1, $out2); ?> The above example will output: string(6) "Hello " string(11) "Hello World"
SEE ALSO
ob_start(3), ob_get_length(3). PHP Documentation Group OB_GET_CONTENTS(3)
Related Man Pages
ltrim(3) - php
ob_end_flush(3) - php
mb_output_handler(3) - php
ob_end_clean(3) - php
ob_list_handlers(3) - php
Similar Topics in the Unix Linux Community
Hacked.... .htaccess