Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP equivalent of send and getattr?

If Ruby gets invited to a party and brings:

foobarobject.send('foomethod') 

.. and Python gets invited to the same party and brings:

getattr(foobarobject, 'foomethod')()

.. what does PHP have to bring to the party?

Bonus question: If Ruby and Python got jealous of PHP's party-favors, what English terms would they search for in PHP's documentation in order to talk about it behind PHP's back?

like image 797
dreftymac Avatar asked Apr 21 '09 04:04

dreftymac


2 Answers

PHP brings this:

$foobarobject->{"foomethod"}();

... and the coke and chips.

EDIT:

Although the term for the above is variable variables there is nothing specifically talking about doing it to an object in the manual. However, you can achieve the same thing with call_user_func:

call_user_func(array($foobarobject, "foomethod"));
like image 54
Paolo Bergantino Avatar answered Oct 11 '22 12:10

Paolo Bergantino


Using variable to hold the method name. Pretty much the same as Paolo's first example, but maybe not so obvious unless you know about it.

$method = "foomethod";
$foobarobject->$method();

You also got the Reflection classes.

$method = new ReflectionMethod('Foobar', 'foomethod');
$method->invoke(null);
like image 23
OIS Avatar answered Oct 11 '22 12:10

OIS