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 bufferSYNOPSISstring ob_get_contents (void )DESCRIPTIONGets the contents of the output buffer without clearing it.RETURN VALUESThis will return the contents of the output buffer or FALSE, if output buffering isn't active.EXAMPLESExample #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 ALSOob_start(3), ob_get_length(3). PHP Documentation Group OB_GET_CONTENTS(3)
Related Man Pages |
---|
ob_get_clean(3) - php |
ob_start(3) - php |
ob_iconv_handler(3) - php |
print_r(3) - php |
var_dump(3) - php |
Similar Topics in the Unix Linux Community |
---|
Hacked.... .htaccess |