Result Size:
625 x 571
tryphp_oc_ob_get_flush.php:
<!DOCTYPE html> <html> <body> <?php ob_start(); echo "Hello World!"; $contents = ob_get_flush(); echo "<br>"; echo "The contents of the buffer were: "; echo $contents; ?> </body> </html>
Hello World!
The contents of the buffer were: Hello World!