vote up 2 vote down star
2

How would I get something like this to work?

$class_name = 'ClassPeer';
$class_name::doSomething();
flag

$class_name::doSomething(); works fine for me. – VolkerK Jun 15 at 19:58
@VolkerK, I'm getting a T_PAAMAYIM_NEKUDOTAYIM error when I try. – James Skidmore Jun 15 at 20:12
@VolkerK: that syntax works since PHP 5.3 – porneL Jun 15 at 21:06

3 Answers

vote up 6 vote down check

Depending on version of PHP:

call_user_func(array($class_name, 'doSomething'));
call_user_func($class_name .'::doSomething'); // >5.2.3
link|flag
Perfect. I'm using the second example above to call the static method. Thanks jimyi! – James Skidmore Jun 15 at 20:17
vote up 2 vote down

Use call_user_func. Also read up on PHP callbacks.

call_user_func(array($class_name, 'doSomething'), $arguments);
link|flag
vote up 1 vote down

Reflection (PHP 5 supports it) is how you'd do this. Read that page and you should be able to figure out how to invoke the function like that.


$func = new ReflectionFunction('somefunction');
$func->invoke();

Documentation Link

link|flag

Your Answer

Get an OpenID
or

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