Skip to content

Instantly share code, notes, and snippets.

@nacin
Created March 1, 2012 15:44
Show Gist options
  • Save nacin/1950612 to your computer and use it in GitHub Desktop.
Save nacin/1950612 to your computer and use it in GitHub Desktop.
Example insanity
<?php
class foo {
function bar() {}
}
$GLOBALS['fb'] =& new foo;
function foo_bar($buffer) {
$GLOBALS['fb']->bar();
return $buffer;
}
ob_start('foo_bar');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment