<?php $f = function () { var_dump($this); }; $f = Closure::bind($f, $f); $f(); $g = function () { var_dump($this, $this()); }; $g = Closure::bind($g, $g); $g();
You have javascript disabled. You will not be able to edit any code.