Skip to content

Instantly share code, notes, and snippets.

@blar
Created September 27, 2014 18:56
Show Gist options
  • Select an option

  • Save blar/bcd772366d2dce3d2cf8 to your computer and use it in GitHub Desktop.

Select an option

Save blar/bcd772366d2dce3d2cf8 to your computer and use it in GitHub Desktop.
<?php
$outputBuffer = new OutputBuffer();
$outputBuffer->capture(function() {
echo 'foo';
throw new Exception('foobar');
echo 'bar';
});
echo $outputBuffer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment