<?php class Foo { public static function bar() { return 'foobar'; } } class FooParent extends Foo { } $callable = [FooParent::class, 'Foo::bar']; var_dump(\is_callable($callable)); var_dump(\call_user_func($callable) === 'foobar'); // Fail $callable();
You have javascript disabled. You will not be able to edit any code.