php call class by string code example
Example: php call class method by string
class Player {
public function SayHi() { print("Hi"); }
}
$player = new Player();
call_user_func(array($player, 'SayHi'));
// or
$player->{'SayHi'}();
// or
$method = 'SayHi';
$player->$method();