Hey guys, Im having a problem with using a variable as the class name when calling a static function within the class. My code is as follows:

class test {
     static function getInstance() {
         return new test();
     }
}

$className = "test";
$test = $className::getInstance();

Ive got to define the class name to a variable as the name of the class is coming from a database so i never know what class to create an instance of.

note: currently i am getting the following error:

Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM 

Thanks

link|improve this question

59% accept rate
Funnily enough, your code works for me in PHP 5.3.1 and does not throw an error. – Pekka Jan 17 '10 at 20:51
1  
variable static classes are available in PHP 5.3+, anything lower requires call_user_func() / call_user_func_array() as mentioned by @hobodave – Owen Jan 17 '10 at 20:53
feedback

2 Answers

up vote 6 down vote accepted
$test = call_user_func(array($className, 'getInstance'));

See call_user_func and callbacks.

link|improve this answer
Beat me to the punch. That's the one (and only?) right way. – Pekka Jan 17 '10 at 20:49
Only way until 5.3 that is, in 5.3+ you can use variable classnames. – StasM Mar 22 '10 at 22:54
feedback

You could use the reflection API, that would let you do something like:

$className = 'Test';
$reflector = new ReflectionClass($className);
$method = $reflector->getMethod('getInstance');
$instance = $method->invoke(null);

or even:

$className = 'Test';
$reflector = new ReflectionClass($className);
$instance = $reflector->newInstance(); 
// or $instance = $reflector->newInstanceArgs([array]);
// or $instance = $reflector->newInstanceWithoutConstructor();

Both seem a lot cleaner to me than just interpreting the value of a string directly as a class name or using call_user_func and friends.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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