vote up 3 vote down star
1

Question: 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?

flag

59% accept rate
The two are different: the Ruby version invokes the method; the Python version returns a bound method. – Miles Apr 21 at 4:52
1  
+1 for the creative way to phrase the question :) – Paolo Bergantino Apr 21 at 4:56
@Miles: the question is now modified by adding paren to the python version. – dreftymac Apr 21 at 5:01

2 Answers

vote up 4 vote down check

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"));
link|flag
vote up 2 vote down

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);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.