WTF! Output buffer for the sake of output buffer

Output buffer control is so cool in PHP that some enjoy using it for the reason of just simply using it.

// some code preparing output content
$outputBuffer = 'some content';
 
// WTF?!
ob_start();
echo $outputBuffer;
ob_flush();
ob_end_clean();

Leave a Reply