vote up 0 vote down star

Hi,

I'm in PHP and I must access a Static method of an object which name must change.

   private $controlleur = null;
   private static $instance = null;

   private function __construct() {
     $nomControlleur = "Controlleurs\_" . Session::singleton()->controlleur;
     $this->controlleur = $nomControlleur::singleton();
   }

This preceding code is giving me " Syntax error unexpected :: ".
I've also tried writing {$nomControlleur}::singleton(); but it's giving me even more errors, thanks a lot for your help.

Balls of steel

flag

0% accept rate

2 Answers

vote up 2 vote down

Use:

$this->controlleur = call_user_func(array($nomControlleur, 'singleton'));

or (5.2.3+ only)

$this->controlleur = call_user_func($nomControlleur . '::singleton');
link|flag
vote up 0 vote down

What about

$staticCall = $nonController."::singleton()";
$staticCall();

?

link|flag
Thanks, nearly that, but I have find it with your comment. Just pull of the () in singleton() beacause when you call it it gives singleton()(); – Balls-of-steel Sep 19 at 20:08

Your Answer

Get an OpenID
or

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