Skip to content

Instantly share code, notes, and snippets.

@biozshock
biozshock / ob_start_test.php
Created November 30, 2011 21:19
Php nested ob_start explanation
<?php
// without OB
echo 'before_ob' . PHP_EOL;
ob_start(); // first level begins
// this line will be in $second
echo 'second_ob' . PHP_EOL;
ob_start(); // second level begins
// these 2 lines will be in $first