<?php class A { public static function who() { var_dump(get_called_class()); } } class B extends A { public static function who() { parent::who(); } } B::who(); call_user_func(array('A', 'who')); call_user_func(array('B', 'parent::who')); $method = array('B', 'parent::who'); $method(); ?>
You have javascript disabled. You will not be able to edit any code.