<?php

$closure = function() {
    echo $this->foo;
};

$context = new \StdClass;
$context->foo = "Hello World";

$boundClosure = $closure->bindTo($context);
$boundClosure();