php call class function by string name

Php

Php Problem Overview


How can I call a normal (not static) class function by its name?

The below gives an error saying param 1 needs to be a valid callback. I don't want the function to be static, I want it to be a normal function, and all the examples I've seen so far had them static.

class Player
{
    public function SayHi() { print("Hi"); }
}

$player = new Player();

call_user_func($Player, 'SayHi');

Php Solutions


Solution 1 - Php

The callback syntax is a little odd in PHP. What you need to do is make an array. The 1st element is the object, and the 2nd is the method.

call_user_func(array($player, 'SayHi'));

You can also do it without call_user_func:

$player->{'SayHi'}();

Or:

$method = 'SayHi';
$player->$method();

Solution 2 - Php

You need to pass the object and method together as an array:

call_user_func(array($Player, 'SayHi'));

See callbacks, specifically:

// Type 3: Object method call
$obj = new MyClass();
call_user_func(array($obj, 'myCallbackMethod'));

Solution 3 - Php

I am giving my answer to a different question here ( https://stackoverflow.com/questions/26436126/php-can-you-assign-a-member-function-to-a-variable ), because it was marked as duplicate by some stackoverflow radicals, and I cannot give my answer to his question! The mentality of stackoverflow fanatics needs to stop.

btw generally this is anti pattern:

$a = 'Pl';
$b = 'aye';
$c = 'r';

$z = $a . $b . $c;

$myz = new $z();


$d = 'Say';
$e = 'Hi';

$x = $d.$e;
$myz->{$x}()

now spread out all variables across your code. You have become the anti christ.

why? because nobody can read your code any longer. Including yourself.

Better is to have the actual references in your code to the function calls you make. Not hidden in some obscure strings. No, just standard calls to the code, wrapped into a function.

Try to keep it as simple as possible. So a better solution would be this:

$x = function(){
  $player = new Player();
  $player->sayHi();
};


$x();

your IDE will find those references. $myz->{$x}() your IDE will not find and you wont be able to maintain well your code

Solution 4 - Php

I wanted to add an answer for people that have a class function that has arguments as well:

class Player{
    public function Say($what){ print($what); }
}

$player = new Player();
call_user_func_array( [ $player, 'Say' ], [ 'Hi' ] );

If you have more arguments in your function Player you can put them in the call_user_func_array's second array:

class Player{
    public function Say($what,$end){ print($what.$end); }
}

$player = new Player();
call_user_func_array( [ $player, 'Say' ], [ 'Hi','gh' ] );

Solution 5 - Php

You are anyway creating an object of the class, so you can use object to call its function.

$player = new Player();
$player->SayHi();

or use callback

$player = new Player();
call_user_func(array($player, 'SayHi'));

Solution 6 - Php

$player->SayHi();

I prefer this form.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser441521View Question on Stackoverflow
Solution 1 - PhpRocket HazmatView Answer on Stackoverflow
Solution 2 - Phpuser229044View Answer on Stackoverflow
Solution 3 - PhpToskanView Answer on Stackoverflow
Solution 4 - PhppatrickView Answer on Stackoverflow
Solution 5 - PhpNagarjunView Answer on Stackoverflow
Solution 6 - PhpzeyoramaView Answer on Stackoverflow