3v4l.org

run code in 300+ PHP versions simultaneously
<?php $closures = array(); $simple_closure = function() { return $this->msg;}; for ($x=0; $x < 2; $x++) { $closures[$x] = $simple_closure; } $obj1 = new stdClass; $obj1->getMessage = function () { return "Top of the morning!\n"; }; $obj2 = clone($obj1); $c1 = Closure::bind($closures[0], $obj1); $c2 = Closure::bind($closures[1], $obj2); var_dump($c1,$c2); echo $c1(); echo $c2(); $m = $obj1->getMessage; echo $m();

preferences:
44.37 ms | 402 KiB | 5 Q