Result Size:
625 x 571
tryphp_oc_ob_clean.php:
<!DOCTYPE html> <html> <body> <?php ob_start(); echo "This output will not be sent to the browser"; ob_clean(); echo "This output will be sent to the browser"; ob_end_flush(); ?> </body> </html>
This output will be sent to the browser