<?php class T { public static $f; } T::$f = function() { echo "static member\n"; }; $f = function() { echo "local variable\n"; }; $f(); $sf = T::$f; $sf();
You have javascript disabled. You will not be able to edit any code.