<?php class other{ public static function foo(){echo "bingo";} } class my_class { protected static $class_name = "other"; public function method() { self::$class_name::foo(); } } new my_class()->method();
You have javascript disabled. You will not be able to edit any code.