ob_get_contents(3) php man page | unix.com

Man Page: ob_get_contents

Operating Environment: php

Section: 3

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
ob_get_clean(3) - php
var_export(3) - php
mb_output_handler(3) - php
ob_gzhandler(3) - php
print_r(3) - php
Similar Topics in the Unix Linux Community
Hacked.... .htaccess