<?php class Foo { static function bar() { $foo = static function() { return get_called_class(); }; return $foo(); } static function baz() { $foo = function() { return get_called_class(); }; return $foo(); } } class Bar extends Foo { } assert(Bar::bar() === 'Bar'); assert(Bar::baz() === 'Bar');
You have javascript disabled. You will not be able to edit any code.