As far as I know, class instantiation using a variable new $className(); is supported in 5.3 for sure, however I'm not sure about 5.2 version and I can't check if this works OK on 5.2.

Can anyone tell what versions are supported?

link|improve this question

67% accept rate
feedback

3 Answers

up vote 1 down vote accepted

This isnt specific to PHP5. It will work in PHP4 as well.

See http://php.net/manual/en/keyword.class.php#99638

link|improve this answer
Thanks :) The link really clarify all :) – s3v3n Sep 3 '11 at 20:32
feedback

tested in 5.2.4-2, and runs fine :)

edit ---

In PHP 5.2 you can't do $className::method(), you get the famous

unexpected T_PAAMAYIM_NEKUDOTAYIM 

but you can do new $className();

link|improve this answer
1  
You can use call_user_func(array('class', 'method'), ...) instead for static functions. – Andreas Sep 3 '11 at 20:32
You also can't access properties like that in PHP < 5.3: $className::$prop – Rudie Sep 4 '11 at 0:25
feedback

The manual says introduced in 5.3.0

http://us3.php.net/manual/en/language.oop5.basic.php

link|improve this answer
1  
It's for new static I think – arnaud576875 Sep 3 '11 at 20:21
Are you referring to the example #5 ? That one it's for instantiation using another object – s3v3n Sep 3 '11 at 20:23
feedback

Your Answer

 
or
required, but never shown

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