Skip to content

Instantly share code, notes, and snippets.

@yields
Created August 6, 2012 11:36
Show Gist options
  • Save yields/3273764 to your computer and use it in GitHub Desktop.
Save yields/3273764 to your computer and use it in GitHub Desktop.
class Context {
var $foo = 'Hello, World';
}
function contextbind(&$cb) {
$cb = $cb->bindTo(new Context);
$cb();
}
$cb = function () {
echo $this->foo;
};
contextbind($cb);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment