Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ob_get_contents(3) [php man page]

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)

Check Out this Related Man Page

OB_ICONV_HANDLER(3)							 1						       OB_ICONV_HANDLER(3)

ob_iconv_handler - Convert character encoding as output buffer handler

SYNOPSIS
string ob_iconv_handler (string $contents, int $status) DESCRIPTION
Converts the string encoded in $internal_encoding to $output_encoding. $internal_encoding and $output_encoding should be defined in the php.ini file or in iconv_set_encoding(3). PARAMETERS
See ob_start(3) for information about this handler parameters. RETURN VALUES
See ob_start(3) for information about this handler return values. EXAMPLES
Example #1 ob_iconv_handler(3) example: <?php iconv_set_encoding("internal_encoding", "UTF-8"); iconv_set_encoding("output_encoding", "ISO-8859-1"); ob_start("ob_iconv_handler"); // start output buffering ?> SEE ALSO
iconv_get_encoding(3), iconv_set_encoding(3), output-control functions. PHP Documentation Group OB_ICONV_HANDLER(3)
Man Page